Files
startup-project-for-jekyll-…/_sass/_custom-variables.sass
2025-11-07 00:44:07 +08:00

17 lines
374 B
Sass

@use "sass:color"
@use "sass:map"
$my-theme-colors: (
"primary": #0000ff,
"secondary": #ffff00,
"success": #00ff00,
"info": #00ffff,
"warning": orange,
"danger": red,
"light": #acacac,
"dark": #444444
)
// Merge custom color map with Bootstrap's default theme colors
$theme-colors: map.merge($theme-colors, $my-theme-colors)