This commit is contained in:
2023-11-24 20:49:19 +08:00
parent ca5219cb93
commit be14f5fdb1
65 changed files with 1991 additions and 2214 deletions

View File

@@ -30,7 +30,7 @@ $grays: (
"600": $gray-600,
"700": $gray-700,
"800": $gray-800,
"900": $gray-900
"900": $gray-900,
);
// scss-docs-end gray-colors-map
// fusv-enable
@@ -63,7 +63,7 @@ $colors: (
"black": $black,
"white": $white,
"gray": $gray-600,
"gray-dark": $gray-800
"gray-dark": $gray-800,
);
// scss-docs-end colors-map
@@ -185,7 +185,7 @@ $blues: (
"blue-600": $blue-600,
"blue-700": $blue-700,
"blue-800": $blue-800,
"blue-900": $blue-900
"blue-900": $blue-900,
);
$indigos: (
@@ -197,7 +197,7 @@ $indigos: (
"indigo-600": $indigo-600,
"indigo-700": $indigo-700,
"indigo-800": $indigo-800,
"indigo-900": $indigo-900
"indigo-900": $indigo-900,
);
$purples: (
@@ -209,7 +209,7 @@ $purples: (
"purple-600": $purple-600,
"purple-700": $purple-700,
"purple-800": $purple-800,
"purple-900": $purple-900
"purple-900": $purple-900,
);
$pinks: (
@@ -221,7 +221,7 @@ $pinks: (
"pink-600": $pink-600,
"pink-700": $pink-700,
"pink-800": $pink-800,
"pink-900": $pink-900
"pink-900": $pink-900,
);
$reds: (
@@ -233,7 +233,7 @@ $reds: (
"red-600": $red-600,
"red-700": $red-700,
"red-800": $red-800,
"red-900": $red-900
"red-900": $red-900,
);
$oranges: (
@@ -245,7 +245,7 @@ $oranges: (
"orange-600": $orange-600,
"orange-700": $orange-700,
"orange-800": $orange-800,
"orange-900": $orange-900
"orange-900": $orange-900,
);
$yellows: (
@@ -257,7 +257,7 @@ $yellows: (
"yellow-600": $yellow-600,
"yellow-700": $yellow-700,
"yellow-800": $yellow-800,
"yellow-900": $yellow-900
"yellow-900": $yellow-900,
);
$greens: (
@@ -269,7 +269,7 @@ $greens: (
"green-600": $green-600,
"green-700": $green-700,
"green-800": $green-800,
"green-900": $green-900
"green-900": $green-900,
);
$teals: (
@@ -281,7 +281,7 @@ $teals: (
"teal-600": $teal-600,
"teal-700": $teal-700,
"teal-800": $teal-800,
"teal-900": $teal-900
"teal-900": $teal-900,
);
$cyans: (
@@ -293,12 +293,12 @@ $cyans: (
"cyan-600": $cyan-600,
"cyan-700": $cyan-700,
"cyan-800": $cyan-800,
"cyan-900": $cyan-900
"cyan-900": $cyan-900,
);
// fusv-enable
// scss-docs-start theme-color-variables
$primary: $red;
$primary: $blue;
$secondary: $gray-600;
$success: $green;
$info: $cyan;
@@ -317,6 +317,6 @@ $theme-colors: (
"warning": $warning,
"danger": $danger,
"light": $light,
"dark": $dark
"dark": $dark,
);
// scss-docs-end theme-colors-map