mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
24 lines
311 B
SCSS
24 lines
311 B
SCSS
// colors
|
|
$black: #0d0d0d;
|
|
$greyWhite: #f3f3f3;
|
|
$skyBlue: #8892b0;
|
|
|
|
// fonts
|
|
$nunito: "Nunito", sans-serif;
|
|
|
|
// font weights
|
|
$thin: 100;
|
|
$exlight: 200;
|
|
$light: 300;
|
|
$regular: 400;
|
|
$medium: 500;
|
|
$semibold: 600;
|
|
$bold: 700;
|
|
$exbold: 800;
|
|
$exblack: 900;
|
|
|
|
// other variables
|
|
.d-none {
|
|
display: none !important;
|
|
}
|