ayu-light.ts
1import { ThemeAppearance, ThemeConfig } from "../../common"
2import { ayu, meta, build_theme } from "./common"
3
4const variant = ayu.light
5const { ramps, syntax } = build_theme(variant, true)
6
7export const theme: ThemeConfig = {
8 name: `${meta.name} Light`,
9 author: meta.author,
10 appearance: ThemeAppearance.Light,
11 license_type: meta.license_type,
12 license_url: meta.license_url,
13 license_file: `${__dirname}/LICENSE`,
14 input_color: ramps,
15 override: { syntax },
16}