ayu-light.ts
1import { createColorScheme } from "./common/ramps"
2import { ayu, meta as themeMeta, buildTheme } from "./common/ayu-common"
3
4export const meta = {
5 ...themeMeta,
6 name: `${themeMeta.name} Light`
7}
8
9const variant = ayu.light
10const theme = buildTheme(variant, true)
11
12export const light = createColorScheme(
13 meta.name,
14 true,
15 theme.ramps,
16 theme.syntax
17)