ayu-dark.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} Dark`
 7}
 8
 9const variant = ayu.dark
10const theme = buildTheme(variant, false)
11
12export const dark = createColorScheme(
13    meta.name,
14    false,
15    theme.ramps,
16    theme.syntax
17)