Initial commit

This commit is contained in:
2025-11-07 00:44:07 +08:00
parent abca7f3801
commit 71961ca1d1
126 changed files with 11919 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
@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)