File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77// General
88@import " general/variables" ;
9+ @import " general/properties" ;
910@import " general/mixins" ;
1011
1112// Components
Original file line number Diff line number Diff line change 1+ /*
2+ * Chart custom properties
3+ */
4+
5+ // Colors
6+ @property --color ,
7+ @property --color-1 ,
8+ @property --color-2 ,
9+ @property --color-3 ,
10+ @property --color-4 ,
11+ @property --color-5 ,
12+ @property --color-6 ,
13+ @property --color-7 ,
14+ @property --color-8 ,
15+ @property --color-9 ,
16+ @property --color-10 ,
17+ @property --chart-bg-color ,
18+ @property --legend-border-color {
19+ syntax : ' <color>' ;
20+ initial-value : transparent ;
21+ inherits : true;
22+ }
23+
24+ // Heading
25+ @property --heading-size {
26+ syntax : ' <length>' ;
27+ initial-value : 0 ;
28+ inherits : true;
29+ }
30+
31+ // Labels
32+ @property --labels-size {
33+ syntax : ' <length>' ;
34+ initial-value : 0 ;
35+ inherits : true;
36+ }
37+ @property --labels-align {
38+ syntax : ' <string>' ;
39+ initial-value : center ;
40+ inherits : true;
41+ }
42+
43+ // Axes
44+ @property --primary-axis-width ,
45+ @property --secondary-axes-width ,
46+ @property --data-axes-width {
47+ syntax : ' <length>' ;
48+ initial-value : 1px ;
49+ inherits : true;
50+ }
51+ @property --primary-axis-style ,
52+ @property --secondary-axes-style ,
53+ @property --data-axes-style {
54+ syntax : ' <line-style>' ;
55+ initial-value : solid ;
56+ inherits : true;
57+ }
58+ @property --primary-axis-color ,
59+ @property --secondary-axes-color ,
60+ @property --data-axes-color {
61+ syntax : ' <color>' ;
62+ initial-value : transparent ;
63+ inherits : true;
64+ }
65+
66+ // Sizes
67+ @property --start ,
68+ @property --end ,
69+ @property --size ,
70+ @property --line-size {
71+ syntax : ' <number>' ;
72+ initial-value : 0 ;
73+ inherits : true;
74+ }
You can’t perform that action at this time.
0 commit comments