Using npm
1npm i @finetwork/ui react
Or yarn
1yarn add @finetwork/ui react
First declare your theme, then you need to follow the next steps to add styles to your app
1const theme = {2colors: {3linkText: '#5F3DFF',4primary: '#bf3fa1',5primaryText: '#000',6primaryButtonText: '#fff',7primary100: '...',8.9.10secondary: '#5F3DFF',11secondaryText: '#fff',12secondaryButtonText: '#fff',13secondary100: '#F4F2FF',14.15.16tertiary: '#FA9A1D',17tertiaryText: '#000',18tertiaryButtonText: '#000',19tertiary100: '#FFF8F0',20.21.22},23fonts: {24primary: 'Nunito Sans, apple-system, sans-serif',25secondary: 'Druk, monospace',26},27}
Wrap your application with ThemeProvider component from @finetwork/ui
1export default function App() {2return (3<ThemeProvider theme={theme}>4<YourApp />5</ThemeProvider>6)7}
Get css string with method getCssString passing your theme and set css string in your style tag
1export default function App = () => {2return (3<>4<Head>5<style6id="fi-ui"7dangerouslySetInnerHTML={{ __html: getCssString(theme) }}8/>9</Head>10<YourApp />11</>12)13}