29 lines
460 B
Sass
29 lines
460 B
Sass
//
|
|
// _colors.sass
|
|
// Attractive dark mode color scheme for fmtools
|
|
//
|
|
|
|
// Primary palette
|
|
$primary: #3380ff
|
|
$primary-dark: #1a3e70
|
|
$primary-light: #8fc6ff
|
|
|
|
// Accent colors
|
|
$accent: #1de9b6
|
|
$accent-dark: #00897b
|
|
$accent-light: #6fffd2
|
|
|
|
|
|
// Success, warning, error
|
|
$success: #00e676
|
|
$warning: #ffd600
|
|
$error: #ff1744
|
|
|
|
// Neutral palette (dark mode)
|
|
$darkest: #0a0c11
|
|
$background: #10131a
|
|
$surface: #1a1e29
|
|
$border: #3a4054
|
|
$text: #ffffff
|
|
$text-subtle: #bfc9e6
|