wupengfei
2025-02-24 fe5fc18b6b1810a61df6ed7d94957f449ca05488
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
@use 'sass:map';
@use 'sass:math';
 
$bole-colors: () !default;
$bole-colors: map.deep-merge(
  (
    'primary': #3a71ff,
    'body-background-color': #f9f9fb,
    'title-color': #444444,
    'shadow-color': rgba(0, 0, 0, 0.15),
    'warning': #ff7d00,
    'danger': #fe3333,
    'success': #31b573,
    'info': #e9e8e8,
  ),
  $bole-colors
);
 
$bole-text-color: (
  'primary': #333333,
  'regular': #666666,
  'secondary': #999999,
  'placeholder': #cbcbcb,
);
 
$bole-size: () !default;
$bole-size: map.deep-merge(
  (
    'body-padding-h': 28px,
    'body-padding-h2': 14px,
  ),
  $bole-size
);
 
$base-footer-box-shadow: 0px -10px 40px 0px map-get($bole-colors, 'shadow-color');