hexo-theme-keep/source/css/layout/common/variables.styl

106 lines
3.6 KiB
Stylus
Raw Normal View History

2020-04-01 23:03:38 +08:00
// ==================================
// ils-x variables
// ==================================
// ===============================
// layout
// ===============================
2020-04-03 18:18:42 +08:00
$header-height = 100px; //
$header-shrink-height = 60px; //
2020-04-08 17:30:05 +08:00
$main-content-width = 60%; //
2020-04-03 18:18:42 +08:00
$media-max-width = 760px; //
2020-04-01 23:03:38 +08:00
// ===============================
2020-04-01 23:03:38 +08:00
// z-index
// ===============================
$z-index-1 = 1001;
$z-index-2 = 1002;
$z-index-3 = 1003;
$z-index-4 = 1004;
$z-index-5 = 1005;
$z-index-6 = 1006;
2020-04-01 22:42:24 +08:00
// ===============================
// color
// ===============================
2020-04-03 18:18:42 +08:00
// normal mode color
2020-04-18 17:26:29 +08:00
$primary-color = #1b65ea; //
2020-04-08 17:30:05 +08:00
$background-color = #fdfdfd; //
$normal-text-color = #44424e; //
$first-text-color = darken($normal-text-color, 15%); //
$second-text-color = darken($normal-text-color, 5%); //
$third-text-color = lighten($normal-text-color, 30%); //
2020-04-03 18:18:42 +08:00
$border-color = darken($background-color, 15%); //
$selection-color = lighten($primary-color, 20%);
// dark mode color
2020-04-03 18:18:42 +08:00
$dark-primary-color = $primary-color;
$dark-background-color = #3a3a3a;
2020-04-03 18:18:42 +08:00
$dark-normal-text-color = #bbb;
$dark-first-text-color = lighten($dark-normal-text-color, 30%);
$dark-second-text-color = lighten($dark-normal-text-color, 20%);
$dark-third-text-color = darken($dark-normal-text-color, 20%);
$dark-border-color = lighten($dark-background-color, 20%);
2020-04-03 18:18:42 +08:00
$dark-selection-color = $selection-color;
2020-04-01 22:42:24 +08:00
// ===============================
// font
// ===============================
//$default-font-family = 'PingHei', 'PingFang SC', 'Microsoft YaHei';
//$default-font-family = 'PingFang SC', 'Hiragino Sans GB', 'STHeiti Light';
//$default-font-family = 'Microsoft YaHei', 'SimHei', 'WenQuanYi Micro Hei', sans-serif;
2020-04-03 18:18:42 +08:00
//$default-font-family = "Exo 2", "Trebuchet MS", "Helvetica", "Arial";
$default-font-family = Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
$default-font-size = 15px;
$default-font-line-height = 20px;
$default-font-weight = 400;
:root {
--background-color: $background-color;
--primary-color: $primary-color;
--first-text-color: $first-text-color;
--second-text-color: $second-text-color;
--third-text-color: $third-text-color;
--normal-text-color: $normal-text-color;
--border-color: $border-color;
2020-04-03 18:18:42 +08:00
--selection-color: $selection-color;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: $dark-background-color;
--primary-color: $dark-primary-color;
--first-text-color: $dark-first-text-color;
--second-text-color: $dark-second-text-color;
--third-text-color: $dark-third-text-color;
--normal-text-color: $dark-normal-text-color;
2020-04-03 18:18:42 +08:00
--border-color: $dark-border-color;
--selection-color: $dark-selection-color;
}
}
.dark-mode {
--background-color: $dark-background-color;
--primary-color: $dark-primary-color;
--first-text-color: $dark-first-text-color;
--second-text-color: $dark-second-text-color;
--third-text-color: $dark-third-text-color;
--normal-text-color: $dark-normal-text-color;
2020-04-03 18:18:42 +08:00
--border-color: $dark-border-color;
--selection-color: $dark-selection-color;
}
.light-mode {
--background-color: $background-color;
--primary-color: $primary-color;
--first-text-color: $first-text-color;
--second-text-color: $second-text-color;
--third-text-color: $third-text-color;
--normal-text-color: $normal-text-color;
--border-color: $border-color;
2020-04-03 18:18:42 +08:00
--selection-color: $selection-color;
}