Skip to content

Commit

Permalink
add palette
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchox5 committed May 24, 2023
1 parent c47de82 commit 6ef483e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/_ui.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
@use "./mixins" as *;
@use "./variables" as *;
@use "sass:map";

$white: #ffffff;

$theme-colors: (
"light": #c7e9fe,
"dark": #000300,
"primary": #e23a48,
"secondary": #685ca0,
"info": #7085b7,
"accent1": #a0dbf7,
"accent2": #e7508a,
"accent3": #ccc1d3,
"success": #6fb72b,
"warning": #fec785,
"danger": #f8166b,
);

.alert {
// Instead of $theme-color-#{warning}
// https://huemint.com/bootstrap-plus/
background-color: map.get($theme-colors, "warning");
}

/* Initial Reset */

Expand Down

0 comments on commit 6ef483e

Please sign in to comment.