feat(components): add basic components
Some checks failed
Publish package / build_and_publish (push) Failing after 21s

This commit is contained in:
Alexander Navarro 2024-10-25 18:40:50 -03:00
parent ee567abf6b
commit d4a11146aa
11 changed files with 174 additions and 4 deletions

View file

@ -1,4 +1,5 @@
@use "sass:color";
@use "colors";
/* Using catppuccin for now, make a theme switcher later */
@use "../themes/catppuccin/catppuccin";
@ -53,8 +54,8 @@ $msp-colors: (
"--msp-color-bg-surface-3": #{getColor("surface1")},
"--msp-color-bg-accent": #{getColor("teal")},
"--msp-color-bg-primary": #{getColor("teal")},
"--msp-color-bg-secondary": #{getColor("mauve")},
"--msp-color-bg-primary": #{getColor("mauve")},
"--msp-color-bg-secondary": #{getColor("lavender")},
"--msp-color-bg-danger": #{getColor("red")},
"--msp-color-bg-disabled": #{color.scale(getColor("text"), $alpha: -10%)},
"--msp-color-bg-input": #{getColor("text")},