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
variables Sass folder should have all the theme colour variations
config Sass file should map the theme variables to Jarvis specific variable names we use, I know sounds complicated but to explained further:
// variables.scss
// Belongs to the theme author not me
// Can have whatever names you want
// Go crazy
$sky-blue-aqua-color: #ccccc;
$tomato-red-error: #0f0f0f;
// config.scss
// Is what Jarvis uses
// Please map your theme colours to our colours here
@import 'theme-fantastic/variables.scss';
$color-dashboard-bg: $sky-blue-aqua-color;
etc..
The text was updated successfully, but these errors were encountered:
variables Sass folder should have all the theme colour variations
config Sass file should map the theme variables to Jarvis specific variable names we use, I know sounds complicated but to explained further:
The text was updated successfully, but these errors were encountered: