You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My idea it to a few base color setup that is extensible if the user wants to. Those colors should include at least a variation of black, grey, white, etc..
For example, the way I setup in my project.
$COLOR: () !default;
// color variables are defined, this is just an example
$COLOR_DEFAULT: (
black: #000,
dark: $dark,
white: #FFF,
gray: $gray-900,
body-text: $gray-800,
body-bg: $white,
primary: $blue,
secondary: $green,
success: $green,
info: $cyan,
warning: $yellow,
error: $red,
) !default;
// use map merge to allow extension in user config
$COLOR_MAP: map-merge($COLOR_DEFAULT, $COLOR);
Then any users can choose to define their own color to override the default color.
I don't seem to find any color references/ variables. Is there any plan to include color system in the future?
The text was updated successfully, but these errors were encountered: