This commit is contained in:
Nate Butler 2023-03-03 10:58:43 -08:00
parent ad4201f768
commit f1b5bf051a
3 changed files with 10 additions and 8 deletions

View File

@ -32,7 +32,13 @@ export default function feedback(colorScheme: ColorScheme) {
},
button_margin: 8,
info_text_default: text(layer, "sans", "default", { size: "xs" }),
link_text_default: text(layer, "sans", "default", { size: "xs", underline: true }),
link_text_hover: text(layer, "sans", "hovered", { size: "xs", underline: true })
link_text_default: text(layer, "sans", "default", {
size: "xs",
underline: true,
}),
link_text_hover: text(layer, "sans", "hovered", {
size: "xs",
underline: true,
}),
}
}

View File

@ -1,8 +1,6 @@
import deepmerge from "deepmerge"
import { FontWeight, fontWeights } from "../../common"
import {
ColorScheme,
} from "./colorScheme"
import { ColorScheme } from "./colorScheme"
export interface SyntaxHighlightStyle {
color: string

View File

@ -41,8 +41,6 @@ const ramps = {
magenta: colorRamp(chroma("#be5046")),
}
const syntax: ThemeSyntax = {
boolean: { color: color.orange },
comment: { color: color.grey },
@ -65,7 +63,7 @@ const syntax: ThemeSyntax = {
type: { color: color.teal },
"variable.special": { color: color.orange },
variant: { color: color.blue },
constructor: { color: color.blue }
constructor: { color: color.blue },
}
export const dark = createColorScheme(name, false, ramps, syntax)