71 lines
1.4 KiB
Stylus
71 lines
1.4 KiB
Stylus
// 主题调色板
|
|
|
|
// 原主题预设变量
|
|
// 颜色
|
|
// $accentColor = #3eaf7c
|
|
// $textColor = #2c3e50
|
|
// $borderColor = #eaecef
|
|
// $codeBgColor = #282c34
|
|
// $arrowBgColor = #ccc
|
|
// $badgeTipColor = #42b983
|
|
// $badgeWarningColor = darken(#ffe564, 35%)
|
|
// $badgeErrorColor = #DA5961
|
|
// 布局
|
|
// $navbarHeight = 3.6rem
|
|
// $sidebarWidth = 20rem
|
|
// $contentWidth = 740px
|
|
// $homePageWidth = 960px
|
|
// 代码块
|
|
// $lineNumbersWrapperWidth = 3.5rem
|
|
|
|
|
|
@require './code-theme'
|
|
|
|
//***vdoing主题-变量***//
|
|
|
|
// 颜色
|
|
$accentColor = #11A8CD
|
|
$arrowBgColor = #ccc
|
|
$badgeTipColor = #42b983
|
|
$badgeWarningColor = darken(#ffe564, 35%)
|
|
$badgeErrorColor = #DA5961
|
|
|
|
// 布局
|
|
$navbarHeight = 3.6rem
|
|
$sidebarWidth = 18rem
|
|
$contentWidth = 830px
|
|
$homePageWidth = 1080px
|
|
$rightMenuWidth = 280px // 右侧菜单
|
|
|
|
// 代码块
|
|
$lineNumbersWrapperWidth = 2.5rem
|
|
|
|
// 浅色模式
|
|
.theme-mode-light
|
|
--bg: #fff
|
|
--textColor: #004050
|
|
--textLightenColor: #0085AD
|
|
--borderColor: rgba(0,0,0,.15)
|
|
--codeBgColor: #f6f6f6
|
|
--codeColor: #525252
|
|
codeThemeLight()
|
|
|
|
// 深色模式
|
|
.theme-mode-dark
|
|
--bg: rgb(30,30,34)
|
|
--textColor: rgb(150,150,154)
|
|
--textLightenColor: #0085AD
|
|
--borderColor: #2C2C3A
|
|
--codeBgColor: #252526
|
|
--codeColor: #fff
|
|
codeThemeDark()
|
|
|
|
// 阅读模式
|
|
.theme-mode-read
|
|
--bg: #f5f5d5
|
|
--textColor: #004050
|
|
--textLightenColor: #0085AD
|
|
--borderColor: rgba(0,0,0,.15)
|
|
--codeBgColor: #282c34
|
|
--codeColor: #fff
|
|
codeThemeDark() |