@gojek/theme-asphalt-web-aloha
v0.4.0
Published
Asphalt Web Aloha theme
Downloads
40
Readme
Asphalt Web Aloha theme
Asphalt Web Aloha theme. This theme gives the look and feel of Aloha theme. Uses #00880d
as the brand color.
Installation
// npm
$ npm install @gojek/theme-asphalt-web-aloha
// yarn
$ yarn add @gojek/theme-asphalt-web-aloha
Basic usage with <ThemeProvider>
import ThemeProvider from "@asphalt-react/theme-provider";
import { aloha } from "@gojek/theme-asphalt-web-aloha";
import { Button } from "@asphalt-react/button";
export const App = () => {
return (
<ThemeProvider theme={aloha}>
<h2>Themed App</h2>
<Button>Hello</Button>
</ThemeProvider>
);
};