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

98 lines
3.1 KiB
Stylus
Raw Normal View History

2020-04-01 23:03:38 +08:00
// ==================================
// ils-x variables
// ==================================
// ===============================
// layout
// ===============================
2020-04-02 22:07:55 +08:00
$header-height = 100px; //
$header-shrink-height = 60px; //
$main-content-width = 70%; //
$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
// ===============================
$primary-color = #ce3e29; //
$background-color = #fff; //
$first-text-color = #2c3e50; //
$second-text-color = #525e6b; //
$third-text-color = #9ca3ad; //
$normal-text-color = #616161; //
2020-04-02 22:07:55 +08:00
$border-color = #eee; //
// dark mode color
$dark-background-color = #333; //
$dark-primary-color = #ce3e29; //
$dark-first-text-color = #eee; //
$dark-second-text-color = #ccc; //
$dark-third-text-color = #aaa; //
$dark-normal-text-color = #bbb; //
$dark-border-color = #888; //
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;
$default-font-family = "Exo 2", "Trebuchet MS", "Helvetica", "Arial";
$default-font-size = 14px;
$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;
}
@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;
--dark-border-color: $dark-border-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;
--dark-border-color: $dark-border-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;
}