1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| $themes: ( // 亮 light:( // 背景颜色 them-bg-color: #fff, them-main-bg-color: #fff, them-font-color: #000, them-sidebar-shadow-color: 1px 1px 20px rgba(0, 0, 0, .4)
//布局 // basis-color: $blove-color, // menu-hover-color: #FFFFFF, // them-title-background:#D2D8EA, // them-title-color: #1684FC, // 按钮 // btn-primary-background: $blove-color, // btn-primary-boder: 1px solid $blove-color, // btn-primary-color: #FFFFFF, // btn-primary-background-hover:#409eff, // btn-primary-boder-hover: 1px solid #409eff, // btn-primary-color-hover: #FFFFFF, ), // 暗 dark:( // 背景颜色 them-bg-color: #18181c, them-main-bg-color: #101014, them-font-color: #fff, them-sidebar-shadow-color: 1px 1px 20px rgba(0, 0, 0, 1) // 布局 // basis-color: $flammulated-color, // menu-hover-color: #FFFFFF, // them-title-background: #EAD2D2, // them-title-color: #E33F3F, // 按钮 // btn-primary-background: $flammulated-color, // btn-primary-boder: 1px solid $flammulated-color, // btn-primary-color: #FFFFFF, // btn-primary-background-hover: #f86065, // btn-primary-boder-hover: 1px solid #f86065, // btn-primary-color-hover: #FFFFFF, ) )
|