@gojek/theme-asphalt-web-carina
v0.4.1
Published
Asphalt Web Carina theme
Downloads
166
Readme
@gojek/theme-asphalt-web-carina
Asphalt Web Carina theme. This theme uses "#07addc" as the brand color.
Installation
// npm
$ npm install @gojek/theme-asphalt-web-carina
// yarn
$ yarn add @gojek/theme-asphalt-web-carina
Usage with <ThemeProvider>
import ThemeProvider from "@asphalt-react/theme-provider";
import { carina } from "@gojek/theme-asphalt-web-carina";
import { PageFlag } from "@asphalt-react/flag";
export const App = () => {
return (
<ThemeProvider theme={carina}>
<PageFlag title="theming">I am themed</PageFlag>
</ThemeProvider>
);
};