mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 08:02:12 +03:00
Fornat
This commit is contained in:
parent
ad4201f768
commit
f1b5bf051a
@ -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,
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user