2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
|
|
|
// KEEP THEME VARIABLE //
|
|
|
|
// ==============================================================================================
|
2020-04-01 23:03:38 +08:00
|
|
|
|
2021-01-06 11:51:39 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2020-04-02 11:01:24 +08:00
|
|
|
// layout
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2022-09-30 10:51:42 +08:00
|
|
|
$header-height = 70px // header height
|
|
|
|
$header-shrink-height = $header-height * 0.72 // header shrink height
|
|
|
|
$scroll-progress-bar-height = 2px // scroll progress bar height
|
|
|
|
$main-content-width = 80% // main content width (PC)
|
|
|
|
$main-content-width-tablet = 86% // main content width (tablet)
|
|
|
|
$main-content-width-mobile = 90% // main content width (mobile)
|
|
|
|
$post-tool-button-width = 38px // post tool button width
|
|
|
|
$component-spacing-value = 38px // component-spacing-value (PC)
|
2021-01-07 15:15:39 +08:00
|
|
|
|
|
|
|
// main content max width
|
2022-10-11 23:05:45 +08:00
|
|
|
$content-max-width = 928px
|
2022-10-11 16:27:04 +08:00
|
|
|
|
|
|
|
// main content max width of has TOC
|
|
|
|
$has-toc-content-max-width = $content-max-width * 1.2
|
|
|
|
|
|
|
|
// main content max width of has first screen
|
|
|
|
$has-fs-content-max-width = $content-max-width * 1.2
|
2020-11-25 23:39:24 +08:00
|
|
|
|
2020-04-29 18:41:29 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2021-01-07 15:15:39 +08:00
|
|
|
// media query
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2022-10-12 15:55:47 +08:00
|
|
|
$media-max-width = 800px // media query max width (tablet)
|
2022-09-30 10:51:42 +08:00
|
|
|
$media-max-width-mobile = 500px // media query max width (mobile)
|
2020-06-04 22:11:27 +08:00
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
keep-tablet() {
|
|
|
|
@media (max-width $media-max-width) {
|
2021-03-29 10:33:37 +08:00
|
|
|
{ block }
|
2022-09-30 10:51:42 +08:00
|
|
|
}
|
|
|
|
}
|
2020-06-04 22:11:27 +08:00
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
keep-mobile() {
|
|
|
|
@media (max-width $media-max-width-mobile) {
|
2021-03-29 10:33:37 +08:00
|
|
|
{ block }
|
2022-09-30 10:51:42 +08:00
|
|
|
}
|
|
|
|
}
|
2020-04-29 18:41:29 +08:00
|
|
|
|
2020-04-24 22:49:10 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2020-04-01 23:03:38 +08:00
|
|
|
// z-index
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2022-09-30 10:51:42 +08:00
|
|
|
$z-index-1 = 1001
|
|
|
|
$z-index-2 = 1002
|
|
|
|
$z-index-3 = 1003
|
|
|
|
$z-index-4 = 1004
|
|
|
|
$z-index-5 = 1005
|
|
|
|
$z-index-6 = 1006
|
|
|
|
$z-index-7 = 1007
|
|
|
|
$z-index-8 = 1008
|
|
|
|
$z-index-9 = 1009
|
2022-10-08 20:56:08 +08:00
|
|
|
$z-index-10 = 1010
|
2020-04-01 22:42:24 +08:00
|
|
|
|
2020-03-21 23:04:01 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
|
|
|
// theme primary color
|
|
|
|
// ==============================================================================================
|
2022-09-30 10:51:42 +08:00
|
|
|
$temp-color = hexo-config('style.primary_color')
|
|
|
|
$primary-color = $temp-color ? convert($temp-color) : #0066cc
|
2022-10-13 22:51:32 +08:00
|
|
|
$primary-color-1 = lighten($primary-color, 10%)
|
2020-11-18 11:15:03 +08:00
|
|
|
|
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
|
|
|
// theme light mode color set
|
|
|
|
// ==============================================================================================
|
2022-09-30 10:51:42 +08:00
|
|
|
$background-color = #fff
|
|
|
|
$second-background-color = darken($background-color, 3%)
|
|
|
|
$default-text-color = #50505c
|
|
|
|
$first-text-color = darken($default-text-color, 10%)
|
|
|
|
$second-text-color = darken($default-text-color, 5%)
|
|
|
|
$third-text-color = lighten($default-text-color, 30%)
|
|
|
|
$fourth-text-color = lighten($default-text-color, 90%)
|
|
|
|
$border-color = darken($background-color, 30%)
|
|
|
|
$selection-color = lighten($primary-color, 10%)
|
|
|
|
$shadow-color = rgba(0, 0, 0, 0.2)
|
|
|
|
$shadow-hover-color = rgba(0, 0, 0, 0.28)
|
|
|
|
$scrollbar-color = lighten($default-text-color, 6%)
|
2022-10-11 16:58:06 +08:00
|
|
|
$scrollbar-bg-color = darken($background-color, 10%)
|
2022-10-11 17:42:27 +08:00
|
|
|
$toc-scrollbar-color = alpha($default-text-color, 0.1)
|
2022-09-30 10:51:42 +08:00
|
|
|
$link-color = darken($default-text-color, 10%)
|
|
|
|
$copyright-info-color = #cc0033
|
|
|
|
$avatar-background-color = #0066cc
|
|
|
|
$header-transparent-background-1 = alpha($background-color, 0.28)
|
|
|
|
$header-transparent-background-2 = alpha($background-color, 0.58)
|
|
|
|
$pjax-progress-bar-color = linear-gradient(45deg, #f10006, #ef5b00, #e59c01, #19ca05, #00cab5, #0264c8, #c303c3)
|
2020-03-21 23:04:01 +08:00
|
|
|
|
2021-01-06 11:51:39 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
|
|
|
// theme dark mode color set
|
|
|
|
// ==============================================================================================
|
2022-09-30 10:51:42 +08:00
|
|
|
$dark-primary-color = $primary-color
|
2022-10-13 22:51:32 +08:00
|
|
|
$dark-primary-color-1 = darken($primary-color, 10%)
|
2022-09-30 10:51:42 +08:00
|
|
|
$dark-background-color = #383940
|
|
|
|
$dark-second-background-color = darken($dark-background-color, 10%)
|
|
|
|
$dark-default-text-color = #bebec6
|
|
|
|
$dark-first-text-color = lighten($dark-default-text-color, 30%)
|
|
|
|
$dark-second-text-color = lighten($dark-default-text-color, 20%)
|
|
|
|
$dark-third-text-color = darken($dark-default-text-color, 20%)
|
|
|
|
$dark-fourth-text-color = darken($dark-default-text-color, 75%)
|
|
|
|
$dark-border-color = lighten($dark-background-color, 20%)
|
|
|
|
$dark-selection-color = $selection-color
|
|
|
|
$dark-shadow-color = rgba(128, 128, 128, 0.2)
|
|
|
|
$dark-shadow-hover-color = rgba(128, 128, 128, 0.28)
|
|
|
|
$dark-scrollbar-color = darken($dark-background-color, 10%)
|
2022-10-11 16:58:06 +08:00
|
|
|
$dark-scrollbar-bg-color = lighten($dark-background-color, 20%)
|
2022-10-11 17:42:27 +08:00
|
|
|
$dark-toc-scrollbar-color = alpha($dark-default-text-color, 0.1)
|
2022-09-30 10:51:42 +08:00
|
|
|
$dark-link-color = lighten($dark-default-text-color, 10%)
|
|
|
|
$dark-copyright-info-color = darken($copyright-info-color, 20%)
|
|
|
|
$dark-avatar-background-color = darken($avatar-background-color, 10%)
|
|
|
|
$dark-header-transparent-background-1 = alpha($dark-background-color, 0.28)
|
|
|
|
$dark-header-transparent-background-2 = alpha($dark-background-color, 0.58)
|
|
|
|
$dark-pjax-progress-bar-color = linear-gradient(45deg, #ea404a, #ea722f, #e9a71f, #67e559, #18ecec, #1b85f1, #ee1dee)
|
2020-04-01 22:42:24 +08:00
|
|
|
|
2021-01-06 11:51:39 +08:00
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2022-10-09 14:51:05 +08:00
|
|
|
// font settings
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2022-10-09 14:51:05 +08:00
|
|
|
$preset-font-family = Optima-Regular, Optima, -apple-system, system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial
|
|
|
|
$custom-font-family = hexo-config('style.font_family')
|
|
|
|
$default-font-family = $custom-font-family ? convert($custom-font-family) : $preset-font-family
|
|
|
|
$custom-font-size = hexo-config('style.font_size')
|
|
|
|
$default-font-size = $custom-font-size ? convert($custom-font-size) : 15.2px
|
2022-09-30 10:51:42 +08:00
|
|
|
$default-font-line-height = 22px
|
|
|
|
$default-font-weight = 400
|
2020-03-21 23:04:01 +08:00
|
|
|
|
|
|
|
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2020-11-17 18:21:16 +08:00
|
|
|
// light/dark mode color
|
2022-09-27 17:52:45 +08:00
|
|
|
// ==============================================================================================
|
2020-11-17 18:21:16 +08:00
|
|
|
root-color(mode) {
|
2022-10-13 22:51:32 +08:00
|
|
|
--primary-color mode == 'light' ? $primary-color : $dark-primary-color
|
|
|
|
--primary-color-1 mode == 'light' ? $primary-color-1 : $dark-primary-color-1
|
2022-09-30 10:51:42 +08:00
|
|
|
--background-color mode == 'light' ? $background-color : $dark-background-color
|
|
|
|
--second-background-color mode == 'light' ? $second-background-color : $dark-second-background-color
|
|
|
|
--first-text-color mode == 'light' ? $first-text-color : $dark-first-text-color
|
|
|
|
--second-text-color mode == 'light' ? $second-text-color : $dark-second-text-color
|
|
|
|
--third-text-color mode == 'light' ? $third-text-color : $dark-third-text-color
|
|
|
|
--fourth-text-color mode == 'light' ? $fourth-text-color : $dark-fourth-text-color
|
|
|
|
--default-text-color mode == 'light' ? $default-text-color : $dark-default-text-color
|
|
|
|
--border-color mode == 'light' ? $border-color : $dark-border-color
|
|
|
|
--selection-color mode == 'light' ? $selection-color : $dark-selection-color
|
|
|
|
--shadow-color mode == 'light' ? $shadow-color : $dark-shadow-color
|
|
|
|
--shadow-hover-color mode == 'light' ? $shadow-hover-color : $dark-shadow-hover-color
|
|
|
|
--scrollbar-color mode == 'light' ? $scrollbar-color : $dark-scrollbar-color
|
2022-10-11 16:58:06 +08:00
|
|
|
--scrollbar-bg-color mode == 'light' ? $scrollbar-bg-color : $dark-scrollbar-bg-color
|
|
|
|
--toc-scrollbar-color mode == 'light' ? $toc-scrollbar-color : $dark-toc-scrollbar-color
|
2022-09-30 10:51:42 +08:00
|
|
|
--link-color mode == 'light' ? $link-color : $dark-link-color
|
|
|
|
--copyright-info-color mode == 'light' ? $copyright-info-color : $dark-copyright-info-color
|
|
|
|
--avatar-background-color mode == 'light' ? $avatar-background-color : $dark-avatar-background-color
|
|
|
|
--header-transparent-background-1 mode == 'light' ? $header-transparent-background-1 : $dark-header-transparent-background-1
|
|
|
|
--header-transparent-background-2 mode == 'light' ? $header-transparent-background-2 : $dark-header-transparent-background-2
|
|
|
|
--pjax-progress-bar-color mode == 'light' ? $pjax-progress-bar-color : $dark-pjax-progress-bar-color
|
2020-11-15 22:06:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-24 19:54:44 +08:00
|
|
|
:root {
|
2022-09-30 10:51:42 +08:00
|
|
|
root-color('light')
|
2021-01-24 19:54:44 +08:00
|
|
|
}
|
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
@media (prefers-color-scheme light) {
|
2021-01-24 20:04:04 +08:00
|
|
|
:root {
|
2022-09-30 10:51:42 +08:00
|
|
|
root-color('light')
|
2021-01-24 20:04:04 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-24 19:54:44 +08:00
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
@media (prefers-color-scheme dark) {
|
2020-11-15 22:06:32 +08:00
|
|
|
:root {
|
2022-09-30 10:51:42 +08:00
|
|
|
root-color('dark')
|
2020-11-15 22:06:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 22:31:20 +08:00
|
|
|
|
2020-11-17 18:21:16 +08:00
|
|
|
.light-mode {
|
2022-09-30 10:51:42 +08:00
|
|
|
root-color('light')
|
2020-04-02 20:37:34 +08:00
|
|
|
}
|
|
|
|
|
2021-01-24 19:54:44 +08:00
|
|
|
|
2020-11-17 18:21:16 +08:00
|
|
|
.dark-mode {
|
2022-09-30 10:51:42 +08:00
|
|
|
root-color('dark')
|
2020-07-09 18:24:13 +08:00
|
|
|
}
|