Package exporting Newskit compatible themes 🎨 for Financial News London
📦 Install
Use your favourite package manager to install @newskit-themes/financialnews-london.
npm install @newskit-themes/financialnews-london
yarn add @newskit-themes/financialnews-london
🔖 Current themes available:
NK-Dark.json
NK-Light.json
✍️ Usage
import {newskitLightTheme} from 'newskit';
import NKDark from '@newskit-themes/financialnews-london/NK-Dark.json'
// compiling and merging it with a base theme
export const financialNewsLondonTheme = createTheme({
name: 'financial-news-london-theme',
baseTheme: newskitLightTheme,
overrides: NKDark,
});
...
< ThemeProvider theme={financialNewsLondonTheme}>
< Container>{children}< /Container>
< /ThemeProvider>