22 lines
511 B
SCSS
Raw Normal View History

2021-12-14 20:00:20 +08:00
@import './theme.scss';
// 颜色
$--color-red: #fc625d;
$--color-warn: #fcbc40;
$--color-success: #34c749;
2021-12-14 20:32:22 +08:00
// 文字
$--color-text-1: hsla(0, 0%, 100%, 0.9);
$--color-text-2: hsla(0, 0%, 100%, 0.7);
$--color-text-3: hsla(0, 0%, 100%, 0.5);
$--color-text-4: hsla(0, 0%, 100%, 0.3);
2021-12-14 20:00:20 +08:00
// 顶部距离
$--header-height: 60px;
// 模糊
2021-12-14 16:41:43 +08:00
$--filter-blur-base: blur(2px);
// 毛玻璃
2021-12-14 16:41:43 +08:00
$--filter-color-base: rgba(0, 0, 0, 0.07);
// 边框
2021-12-14 20:00:20 +08:00
$--border-radius-base: 8px;
$--border-bottom-style: 1px solid $--color-border;