17 lines
374 B
Sass
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)
|