mirror of
https://github.com/BishopFox/sliver
synced 2026-06-08 10:29:05 +00:00
99 lines
1.8 KiB
Go
99 lines
1.8 KiB
Go
package theme
|
|
|
|
// DefaultThemeYAML is the initial theme created at <client app dir>/theme.yaml.
|
|
//
|
|
// Palettes:
|
|
// - default: neutral base
|
|
// - primary/secondary: accent colors
|
|
// - success/warning/danger: semantic colors
|
|
//
|
|
// Each palette has a "default" value and a set of numeric modifiers:
|
|
// 50, 100, 200, 300, 400, 500, 600, 700, 800, 900.
|
|
const DefaultThemeYAML = `# Sliver client console theme.
|
|
# Colors are hex strings (e.g. "#006FEE").
|
|
|
|
primary:
|
|
default: "#006FEE"
|
|
mods:
|
|
50: "#001731"
|
|
100: "#002e62"
|
|
200: "#004493"
|
|
300: "#005bc4"
|
|
400: "#006FEE"
|
|
500: "#338ef7"
|
|
600: "#66aaf9"
|
|
700: "#99c7fb"
|
|
800: "#cce3fd"
|
|
900: "#e6f1fe"
|
|
|
|
secondary:
|
|
default: "#9353d3"
|
|
mods:
|
|
50: "#180828"
|
|
100: "#301050"
|
|
200: "#481878"
|
|
300: "#6020a0"
|
|
400: "#7828c8"
|
|
500: "#9353d3"
|
|
600: "#ae7ede"
|
|
700: "#c9a9e9"
|
|
800: "#e4d4f4"
|
|
900: "#f2eafa"
|
|
|
|
default:
|
|
default: "#3f3f46"
|
|
mods:
|
|
50: "#18181b"
|
|
100: "#27272a"
|
|
200: "#3f3f46"
|
|
300: "#52525b"
|
|
400: "#71717a"
|
|
500: "#a1a1aa"
|
|
600: "#d4d4d8"
|
|
700: "#e4e4e7"
|
|
800: "#f4f4f5"
|
|
900: "#fafafa"
|
|
|
|
success:
|
|
default: "#17c964"
|
|
mods:
|
|
50: "#052814"
|
|
100: "#095028"
|
|
200: "#0e793c"
|
|
300: "#12a150"
|
|
400: "#17c964"
|
|
500: "#45d483"
|
|
600: "#74dfa2"
|
|
700: "#a2e9c1"
|
|
800: "#d1f4e0"
|
|
900: "#e8faf0"
|
|
|
|
warning:
|
|
default: "#f5a524"
|
|
mods:
|
|
50: "#312107"
|
|
100: "#62420e"
|
|
200: "#936316"
|
|
300: "#c4841d"
|
|
400: "#f5a524"
|
|
500: "#f7b750"
|
|
600: "#f9c97c"
|
|
700: "#fbdba7"
|
|
800: "#fdedd3"
|
|
900: "#fefce8"
|
|
|
|
danger:
|
|
default: "#f31260"
|
|
mods:
|
|
50: "#310413"
|
|
100: "#610726"
|
|
200: "#920b3a"
|
|
300: "#c20e4d"
|
|
400: "#f31260"
|
|
500: "#f54180"
|
|
600: "#f871a0"
|
|
700: "#faa0bf"
|
|
800: "#fdd0df"
|
|
900: "#fee7ef"
|
|
`
|