Settable SCSS

SCSS variable colors

Settable SCSS colors with a specified hex on which some others are based.

Core colors

src/_variables.scss
/*
  Core colors.
*/
// Accent.
$accent-color: #9932CC !default; // --#{$var-prefix}-accent-color.

// Dark.
$dark-color: #303742 !default; // --#{$var-prefix}-dark-color.

// Light.
$light-color: #fff !default; // --#{$var-prefix}-light-color.

// Primary.
$primary-color: #5755d9 !default; // --#{$var-prefix}-primary-color.

Background colors

src/_variables.scss
/*
  Background colors.
*/
$bg-color-light: $light-color !default; // --#{$var-prefix}-bg-color-light.

Control colors

Other colors

Body colors

Last updated