You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
478 B
SCSS

@use "sass:color" as color;
$primary: #b000bd;
$primary-lighter-10: color.scale($primary, $lightness: 10%);
$primary-lighter-20: color.scale($primary, $lightness: 20%);
$background: #120219;
$background-lighter-10: color.scale($background, $lightness: 10%);
$background-lighter-20: color.scale($background, $lightness: 20%);
$background-lighter-30: color.scale($background, $lightness: 30%);
$text: #FFF;
$text-darker: #CCF;
$text-highlight: #a49eff;
$text-visited: #b396ff;