wupengfei
1 天以前 2500843dbffc841eeab2e0a91d735c56cb6ea357
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 './custom_theme.scss' as *;
@use 'sass:map';
@use 'sass:math';
 
$bole-colors: () !default;
$bole-colors: map.deep-merge(
  (
    'primary': $primary-color,
    'body-background-color': $body-background-color,
    'title-color': #444444,
    'shadow-color': rgba(0, 0, 0, 0.15),
    'warning': #ff9e25,
    'danger': #f5222d,
    'success': #07c160,
    'info': #e9e8e8,
  ),
  $bole-colors
);
 
$bole-text-color: (
  'primary': #2f303d,
  'regular': #575b6c,
  'secondary': #9fa2af,
  'placeholder': #dfe1e3,
);
 
$bole-size: () !default;
$bole-size: map.deep-merge(
  (
    'body-padding-h': 32px,
  ),
  $bole-size
);
 
$base-footer-box-shadow: 0px -10px 40px 0px map-get($bole-colors, 'shadow-color');