const colors: {
page: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.default}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
};
};
cta: {
primary: {
bg: {
default: {
value: "{colors.bg.primary}";
};
hover: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onPrimary}";
};
hover: {
value: "{colors.fg.onPrimary}";
};
};
};
secondary: {
bg: {
default: {
value: "{colors.bg.secondary}";
};
hover: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onSecondary}";
};
hover: {
value: "{colors.fg.onSecondary}";
};
};
};
};
link: {
primary: {
text: {
default: {
value: "{colors.fg.primary}";
};
hover: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
};
secondary: {
text: {
default: {
value: "{colors.fg.default}";
};
hover: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
};
};
input: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.heavy}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
label: {
default: {
value: "{colors.fg.default}";
};
};
placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
errorText: {
default: {
value: "{colors.fg.negative}";
};
};
successText: {
default: {
value: "{colors.fg.positive}";
};
};
};
select: {
label: {
default: {
value: "{colors.fg.default}";
};
};
trigger: {
bg: {
default: {
value: "{colors.bg.default}";
};
hover: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
};
pressed: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
errorText: {
default: {
value: "{colors.fg.negative}";
};
};
successText: {
default: {
value: "{colors.fg.positive}";
};
};
};
list: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
item: {
bg: {
default: {
value: "{colors.bg.default}";
};
highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
onHighlight: {
value: "{colors.fg.default}";
};
mutedOnHighlight: {
value: "{colors.fg.muted}";
};
};
};
};
};
code: {
bg: {
default: {
value: "{colors.bg.alternate}";
};
};
border: {
default: {
value: "{colors.line.heavy}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
};
bg: {
default: {
value: "#ffffff";
};
alternate: {
value: "#eef0f3";
};
contrast: {
value: "{colors.fg.default}";
};
overlay: {
value: "{colors.bg.alternate}";
modify: {
type: "color-alpha";
value: 0.33;
};
};
skeleton: {
value: "{colors.fg.default}";
modify: {
type: "color-alpha";
value: 0.1;
};
};
primary: {
value: "#0052ff";
};
secondary: {
value: "#eef0f3";
};
};
fg: {
default: {
value: "#0a0b0d";
};
muted: {
value: "#5b616e";
};
primary: {
value: "#0052ff";
};
onPrimary: {
value: "#ffffff";
};
onSecondary: {
value: "#0a0b0d";
};
positive: {
value: "#098551";
};
negative: {
value: "#cf202f";
};
warning: {
value: "#ed702f";
};
};
line: {
default: {
value: "#dcdfe4";
};
heavy: {
value: "#9397a0";
};
primary: {
value: "{colors.fg.primary}";
};
positive: {
value: "{colors.fg.positive}";
};
negative: {
value: "{colors.fg.negative}";
};
};
};
readonly page: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.default}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.default}";
};
};
readonly default: {
value: "{colors.bg.default}";
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly border: {
default: {
value: "{colors.line.default}";
};
};
readonly default: {
value: "{colors.line.default}";
};
readonly value: "{colors.line.default}" = "{colors.line.default}";
readonly text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly muted: {
value: "{colors.fg.muted}";
};
readonly value: "{colors.fg.muted}" = "{colors.fg.muted}";
readonly cta: {
primary: {
bg: {
default: {
value: "{colors.bg.primary}";
};
hover: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onPrimary}";
};
hover: {
value: "{colors.fg.onPrimary}";
};
};
};
secondary: {
bg: {
default: {
value: "{colors.bg.secondary}";
};
hover: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onSecondary}";
};
hover: {
value: "{colors.fg.onSecondary}";
};
};
};
};
readonly primary: {
bg: {
default: {
value: "{colors.bg.primary}";
};
hover: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onPrimary}";
};
hover: {
value: "{colors.fg.onPrimary}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.primary}";
};
hover: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
readonly default: {
value: "{colors.bg.primary}";
};
readonly value: "{colors.bg.primary}" = "{colors.bg.primary}";
readonly hover: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
readonly value: "{colors.bg.primary}" = "{colors.bg.primary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
readonly pressed: {
value: "{colors.bg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
readonly value: "{colors.bg.primary}" = "{colors.bg.primary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
readonly border: {
focus: {
value: "{colors.line.primary}";
};
};
readonly focus: {
value: "{colors.line.primary}";
};
readonly value: "{colors.line.primary}" = "{colors.line.primary}";
readonly text: {
default: {
value: "{colors.fg.onPrimary}";
};
hover: {
value: "{colors.fg.onPrimary}";
};
};
readonly default: {
value: "{colors.fg.onPrimary}";
};
readonly value: "{colors.fg.onPrimary}" = "{colors.fg.onPrimary}";
readonly hover: {
value: "{colors.fg.onPrimary}";
};
readonly value: "{colors.fg.onPrimary}" = "{colors.fg.onPrimary}";
readonly secondary: {
bg: {
default: {
value: "{colors.bg.secondary}";
};
hover: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
border: {
focus: {
value: "{colors.line.primary}";
};
};
text: {
default: {
value: "{colors.fg.onSecondary}";
};
hover: {
value: "{colors.fg.onSecondary}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.secondary}";
};
hover: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
readonly default: {
value: "{colors.bg.secondary}";
};
readonly value: "{colors.bg.secondary}" = "{colors.bg.secondary}";
readonly hover: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
readonly value: "{colors.bg.secondary}" = "{colors.bg.secondary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
readonly pressed: {
value: "{colors.bg.secondary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
readonly value: "{colors.bg.secondary}" = "{colors.bg.secondary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
readonly border: {
focus: {
value: "{colors.line.primary}";
};
};
readonly focus: {
value: "{colors.line.primary}";
};
readonly value: "{colors.line.primary}" = "{colors.line.primary}";
readonly text: {
default: {
value: "{colors.fg.onSecondary}";
};
hover: {
value: "{colors.fg.onSecondary}";
};
};
readonly default: {
value: "{colors.fg.onSecondary}";
};
readonly value: "{colors.fg.onSecondary}" = "{colors.fg.onSecondary}";
readonly hover: {
value: "{colors.fg.onSecondary}";
};
readonly value: "{colors.fg.onSecondary}" = "{colors.fg.onSecondary}";
readonly link: {
primary: {
text: {
default: {
value: "{colors.fg.primary}";
};
hover: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
};
secondary: {
text: {
default: {
value: "{colors.fg.default}";
};
hover: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
};
};
readonly primary: {
text: {
default: {
value: "{colors.fg.primary}";
};
hover: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
};
readonly text: {
default: {
value: "{colors.fg.primary}";
};
hover: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
pressed: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
};
readonly default: {
value: "{colors.fg.primary}";
};
readonly value: "{colors.fg.primary}" = "{colors.fg.primary}";
readonly hover: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
};
readonly value: "{colors.fg.primary}" = "{colors.fg.primary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "15%"]];
readonly pressed: {
value: "{colors.fg.primary}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
};
readonly value: "{colors.fg.primary}" = "{colors.fg.primary}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "30%"]];
readonly secondary: {
text: {
default: {
value: "{colors.fg.default}";
};
hover: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
};
readonly text: {
default: {
value: "{colors.fg.default}";
};
hover: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
pressed: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly hover: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
readonly pressed: {
value: "{colors.fg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "20%"]];
readonly input: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.heavy}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
label: {
default: {
value: "{colors.fg.default}";
};
};
placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
errorText: {
default: {
value: "{colors.fg.negative}";
};
};
successText: {
default: {
value: "{colors.fg.positive}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.default}";
};
};
readonly default: {
value: "{colors.bg.default}";
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly border: {
default: {
value: "{colors.line.heavy}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
readonly default: {
value: "{colors.line.heavy}";
};
readonly value: "{colors.line.heavy}" = "{colors.line.heavy}";
readonly focus: {
value: "{colors.line.primary}";
};
readonly value: "{colors.line.primary}" = "{colors.line.primary}";
readonly error: {
value: "{colors.line.negative}";
};
readonly value: "{colors.line.negative}" = "{colors.line.negative}";
readonly success: {
value: "{colors.line.positive}";
};
readonly value: "{colors.line.positive}" = "{colors.line.positive}";
readonly label: {
default: {
value: "{colors.fg.default}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
readonly default: {
value: "{colors.fg.muted}";
};
readonly value: "{colors.fg.muted}" = "{colors.fg.muted}";
readonly text: {
default: {
value: "{colors.fg.default}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly errorText: {
default: {
value: "{colors.fg.negative}";
};
};
readonly default: {
value: "{colors.fg.negative}";
};
readonly value: "{colors.fg.negative}" = "{colors.fg.negative}";
readonly successText: {
default: {
value: "{colors.fg.positive}";
};
};
readonly default: {
value: "{colors.fg.positive}";
};
readonly value: "{colors.fg.positive}" = "{colors.fg.positive}";
readonly select: {
label: {
default: {
value: "{colors.fg.default}";
};
};
trigger: {
bg: {
default: {
value: "{colors.bg.default}";
};
hover: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
};
pressed: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
errorText: {
default: {
value: "{colors.fg.negative}";
};
};
successText: {
default: {
value: "{colors.fg.positive}";
};
};
};
list: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
item: {
bg: {
default: {
value: "{colors.bg.default}";
};
highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
onHighlight: {
value: "{colors.fg.default}";
};
mutedOnHighlight: {
value: "{colors.fg.muted}";
};
};
};
};
};
readonly label: {
default: {
value: "{colors.fg.default}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly trigger: {
bg: {
default: {
value: "{colors.bg.default}";
};
hover: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
};
pressed: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
errorText: {
default: {
value: "{colors.fg.negative}";
};
};
successText: {
default: {
value: "{colors.fg.positive}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.default}";
};
hover: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
};
pressed: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
};
};
readonly default: {
value: "{colors.bg.default}";
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly hover: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "5%"]];
readonly pressed: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "7%"]];
readonly border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
readonly default: {
value: "{colors.line.default}";
};
readonly value: "{colors.line.default}" = "{colors.line.default}";
readonly focus: {
value: "{colors.line.primary}";
};
readonly value: "{colors.line.primary}" = "{colors.line.primary}";
readonly error: {
value: "{colors.line.negative}";
};
readonly value: "{colors.line.negative}" = "{colors.line.negative}";
readonly success: {
value: "{colors.line.positive}";
};
readonly value: "{colors.line.positive}" = "{colors.line.positive}";
readonly placeholder: {
default: {
value: "{colors.fg.muted}";
};
};
readonly default: {
value: "{colors.fg.muted}";
};
readonly value: "{colors.fg.muted}" = "{colors.fg.muted}";
readonly text: {
default: {
value: "{colors.fg.default}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly errorText: {
default: {
value: "{colors.fg.negative}";
};
};
readonly default: {
value: "{colors.fg.negative}";
};
readonly value: "{colors.fg.negative}" = "{colors.fg.negative}";
readonly successText: {
default: {
value: "{colors.fg.positive}";
};
};
readonly default: {
value: "{colors.fg.positive}";
};
readonly value: "{colors.fg.positive}" = "{colors.fg.positive}";
readonly list: {
bg: {
default: {
value: "{colors.bg.default}";
};
};
border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
item: {
bg: {
default: {
value: "{colors.bg.default}";
};
highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
onHighlight: {
value: "{colors.fg.default}";
};
mutedOnHighlight: {
value: "{colors.fg.muted}";
};
};
};
};
readonly bg: {
default: {
value: "{colors.bg.default}";
};
};
readonly default: {
value: "{colors.bg.default}";
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly border: {
default: {
value: "{colors.line.default}";
};
focus: {
value: "{colors.line.primary}";
};
error: {
value: "{colors.line.negative}";
};
success: {
value: "{colors.line.positive}";
};
};
readonly default: {
value: "{colors.line.default}";
};
readonly value: "{colors.line.default}" = "{colors.line.default}";
readonly focus: {
value: "{colors.line.primary}";
};
readonly value: "{colors.line.primary}" = "{colors.line.primary}";
readonly error: {
value: "{colors.line.negative}";
};
readonly value: "{colors.line.negative}" = "{colors.line.negative}";
readonly success: {
value: "{colors.line.positive}";
};
readonly value: "{colors.line.positive}" = "{colors.line.positive}";
readonly item: {
bg: {
default: {
value: "{colors.bg.default}";
};
highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
};
text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
onHighlight: {
value: "{colors.fg.default}";
};
mutedOnHighlight: {
value: "{colors.fg.muted}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.default}";
};
highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
};
readonly default: {
value: "{colors.bg.default}";
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly highlight: {
value: "{colors.bg.default}";
modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
};
readonly value: "{colors.bg.default}" = "{colors.bg.default}";
readonly modify: {
type: "color-mix";
value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
};
readonly type: "color-mix" = "color-mix";
readonly value: readonly [readonly ["{colors.bg.contrast}", "10%"]];
readonly text: {
default: {
value: "{colors.fg.default}";
};
muted: {
value: "{colors.fg.muted}";
};
onHighlight: {
value: "{colors.fg.default}";
};
mutedOnHighlight: {
value: "{colors.fg.muted}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly muted: {
value: "{colors.fg.muted}";
};
readonly value: "{colors.fg.muted}" = "{colors.fg.muted}";
readonly onHighlight: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly mutedOnHighlight: {
value: "{colors.fg.muted}";
};
readonly value: "{colors.fg.muted}" = "{colors.fg.muted}";
readonly code: {
bg: {
default: {
value: "{colors.bg.alternate}";
};
};
border: {
default: {
value: "{colors.line.heavy}";
};
};
text: {
default: {
value: "{colors.fg.default}";
};
};
};
readonly bg: {
default: {
value: "{colors.bg.alternate}";
};
};
readonly default: {
value: "{colors.bg.alternate}";
};
readonly value: "{colors.bg.alternate}" = "{colors.bg.alternate}";
readonly border: {
default: {
value: "{colors.line.heavy}";
};
};
readonly default: {
value: "{colors.line.heavy}";
};
readonly value: "{colors.line.heavy}" = "{colors.line.heavy}";
readonly text: {
default: {
value: "{colors.fg.default}";
};
};
readonly default: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly bg: {
default: {
value: "#ffffff";
};
alternate: {
value: "#eef0f3";
};
contrast: {
value: "{colors.fg.default}";
};
overlay: {
value: "{colors.bg.alternate}";
modify: {
type: "color-alpha";
value: 0.33;
};
};
skeleton: {
value: "{colors.fg.default}";
modify: {
type: "color-alpha";
value: 0.1;
};
};
primary: {
value: "#0052ff";
};
secondary: {
value: "#eef0f3";
};
};
readonly default: {
value: "#ffffff";
};
readonly value: "#ffffff" = colorsBase.white;
readonly alternate: {
value: "#eef0f3";
};
readonly value: "#eef0f3" = colorsBase.gray100;
readonly contrast: {
value: "{colors.fg.default}";
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly overlay: {
value: "{colors.bg.alternate}";
modify: {
type: "color-alpha";
value: 0.33;
};
};
readonly value: "{colors.bg.alternate}" = "{colors.bg.alternate}";
readonly modify: {
type: "color-alpha";
value: 0.33;
};
readonly type: "color-alpha" = "color-alpha";
readonly value: 0.33 = 0.33;
readonly skeleton: {
value: "{colors.fg.default}";
modify: {
type: "color-alpha";
value: 0.1;
};
};
readonly value: "{colors.fg.default}" = "{colors.fg.default}";
readonly modify: {
type: "color-alpha";
value: 0.1;
};
readonly type: "color-alpha" = "color-alpha";
readonly value: 0.1 = 0.1;
readonly primary: {
value: "#0052ff";
};
readonly value: "#0052ff" = colorsBase.blue500;
readonly secondary: {
value: "#eef0f3";
};
readonly value: "#eef0f3" = colorsBase.gray100;
readonly fg: {
default: {
value: "#0a0b0d";
};
muted: {
value: "#5b616e";
};
primary: {
value: "#0052ff";
};
onPrimary: {
value: "#ffffff";
};
onSecondary: {
value: "#0a0b0d";
};
positive: {
value: "#098551";
};
negative: {
value: "#cf202f";
};
warning: {
value: "#ed702f";
};
};
readonly default: {
value: "#0a0b0d";
};
readonly value: "#0a0b0d" = colorsBase.black;
readonly muted: {
value: "#5b616e";
};
readonly value: "#5b616e" = colorsBase.gray700;
readonly primary: {
value: "#0052ff";
};
readonly value: "#0052ff" = colorsBase.blue500;
readonly onPrimary: {
value: "#ffffff";
};
readonly value: "#ffffff" = colorsBase.white;
readonly onSecondary: {
value: "#0a0b0d";
};
readonly value: "#0a0b0d" = colorsBase.black;
readonly positive: {
value: "#098551";
};
readonly value: "#098551" = colorsBase.green500;
readonly negative: {
value: "#cf202f";
};
readonly value: "#cf202f" = colorsBase.red500;
readonly warning: {
value: "#ed702f";
};
readonly value: "#ed702f" = colorsBase.amber500;
readonly line: {
default: {
value: "#dcdfe4";
};
heavy: {
value: "#9397a0";
};
primary: {
value: "{colors.fg.primary}";
};
positive: {
value: "{colors.fg.positive}";
};
negative: {
value: "{colors.fg.negative}";
};
};
readonly default: {
value: "#dcdfe4";
};
readonly value: "#dcdfe4" = colorsBase.gray200;
readonly heavy: {
value: "#9397a0";
};
readonly value: "#9397a0" = colorsBase.gray500;
readonly primary: {
value: "{colors.fg.primary}";
};
readonly value: "{colors.fg.primary}" = "{colors.fg.primary}";
readonly positive: {
value: "{colors.fg.positive}";
};
readonly value: "{colors.fg.positive}" = "{colors.fg.positive}";
readonly negative: {
value: "{colors.fg.negative}";
};
readonly value: "{colors.fg.negative}" = "{colors.fg.negative}";
Was this page helpful?