ayu-dark.ts
1import { ThemeAppearance, ThemeConfig } from "../../common"
2import { ayu, meta, buildTheme } from "./common"
3
4const variant = ayu.dark
5const { ramps, syntax } = buildTheme(variant, false)
6
7export const theme: ThemeConfig = {
8 name: `${meta.name} Dark`,
9 author: meta.author,
10 appearance: ThemeAppearance.Dark,
11 licenseType: meta.licenseType,
12 licenseUrl: meta.licenseUrl,
13 licenseFile: `${__dirname}/LICENSE`,
14 inputColor: ramps,
15 override: { syntax },
16}