mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 11:57:43 +01:00
* bump package * Add Logo * remove console * prettify it * add favicons and fix issue * Add categorie page * add drag and drop * Make drag and drop working * Add drag options * Add modal * small styling fixes * fix search * Add code editor * Add more styling * Add more categories * create context provider * refactor eslint thing * update chakra-ui * improve, category bar * Add sortly * Add categories * Try to fix new categories * Fix Categories * Add docs Menu Tree data * Start with sectiontitles * Create link list * Add Docs menu to mobile * Add some more pages and text * Optimize text * add license to the menu * update packages * Fix build * Update title * Remove ModifiedTooltip * Fix assets * add yarn to copy-assets command * install deps * update * try something * new categories page * try something * Add icons reorder * add new icons page * add category view button * add categories * Fix vercel build * Add sidebar and costumize button * fix merge conlfict * Remove console.logs * add sidebar * Add icon overview * Fix key render issue * Fix types * Fix category render * Fix build * update lockfile * Added category icon and icon count in list. Moved scrollbar to the left to make it less intrusive --------- Co-authored-by: Eric Fennis <eric.fennis@endurance.com> Co-authored-by: Eric Fennis <eric@dreamteam.nl> Co-authored-by: Karsa <karsa@karsa.org>
41 lines
793 B
TypeScript
41 lines
793 B
TypeScript
import { theme as chakraTheme } from "@chakra-ui/react";
|
|
|
|
const theme = {
|
|
...chakraTheme,
|
|
fonts: {
|
|
...chakraTheme.fonts,
|
|
body: `'Mukta', sans-serif`,
|
|
},
|
|
colors: {
|
|
...chakraTheme.colors,
|
|
brand: {
|
|
DEFAULT: '#F56565',
|
|
'50': '#FFFFFF',
|
|
'100': '#FFFEFE',
|
|
'200': '#FCD8D8',
|
|
'300': '#FAB2B2',
|
|
'400': '#F78B8B',
|
|
'500': '#F56565',
|
|
'600': '#F23030',
|
|
'700': '#DC0E0E',
|
|
'800': '#A70B0B',
|
|
'900': '#720707'
|
|
},
|
|
},
|
|
component: {
|
|
Button: {
|
|
variants: {
|
|
solid: (props) => {
|
|
// if(props?.colorScheme === 'red') {
|
|
return {
|
|
bg: props.colorMode === 'dark' ? 'red.700' : 'red.100',
|
|
}
|
|
// }
|
|
},
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export default theme;
|