@gojek/theme-asphalt-web-lynx
v0.8.0
Published
Asphalt web theme lynx
Readme
Asphalt Web Lynx theme
Asphalt Web Lynx theme. This theme gives the look and feel of Lynx theme. Uses #00880d as the brand color and contains gradient color for interactive surface tokens.
Installation
// npm
$ npm install @gojek/theme-asphalt-web-lynx
// yarn
$ yarn add @gojek/theme-asphalt-web-lynxBasic usage with <ThemeProvider>
import ThemeProvider from "@asphalt-react/theme-provider";
import { lynx } from "@gojek/theme-asphalt-web-lynx";
import { Button } from "@asphalt-react/button";
export const App = () => {
return (
<ThemeProvider theme={lynx}>
<h2>Themed App</h2>
<Button>Hello</Button>
</ThemeProvider>
);
};