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.

30 lines
381 B
SCSS

$--web-font0: #000;
$--web-font1: #333;
$--web-font2: #666;
$--web-font3: #999;
$--theme-color: #154ddd;
.text-web-font0 {
color: $--web-font0;
}
.text-web-font1 {
color: $--web-font1;
}
.text-web-font2 {
color: $--web-font2;
}
.text-web-font3 {
color: $--web-font3;
}
.theme-color {
color: $--theme-color;
}
.theme-bg-color {
background-color: $--theme-color;
}