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

39 lines
1.0 KiB

4 years ago
@charset "UTF-8";
/* light theme color */
$light-background: #fff;
$light-background-secondary: #eaeaea;
$light-color: #222;
$light-color-secondary: #767676;
4 years ago
$light-border-color: #dcdcdc;
$light-navbar: #f9f9f9;
4 years ago
/* dark theme colors */
$dark-background: #1c1f1f;
4 years ago
$dark-background-secondary: #3b3d42;
$dark-color: #eee9e2;
4 years ago
$dark-color-secondary: #73747b;
$dark-border-color: #4a4b50;
$dark-navbar: #1b1c1c;
$dark-image-border: #ffffff3f;
$scrollbar-background: #212020;
$scrollbar-color: #dcdcdc;
$screen-reader-text-background: #f1f1f1;
$screen-reader-text-color: #21759b;
4 years ago
$media-size-phone: "(max-width: 684px)";
$media-size-phone-min: "(min-width: 684px)";
4 years ago
$media-size-tablet: "(max-width: 900px)";
$media-size-tablet-min: "(min-width: 900px)";
$media-size-medium: "(max-width: 1200px)";
$media-size-medium-min: "(min-width: 1200px)";
4 years ago
/* variables for js, must be the same as these in @custom-media queries */
:root {
--phoneWidth: (max-width: 684px);
--tabletWidth: (max-width: 900px);
--mediumWidth: (max-width: 1200px);
}