elk/docs/tokens.config.ts

18 lines
417 B
TypeScript
Raw Normal View History

import { defineTheme } from 'pinceau'
import { getColors } from 'theme-colors'
2023-01-09 00:42:59 +03:00
const light = getColors('#995e1b')
const primary = Object
.entries(getColors('#d98018'))
.reduce((acc, [key, value]) => {
acc[key] = {
initial: light[key]!,
dark: value,
}
return acc
}, {} as Record<string | number, { initial: string, dark: string }>)
2023-01-09 00:42:59 +03:00
export default defineTheme({
color: { primary },
2023-01-09 00:42:59 +03:00
})