@acorex/styles 6.1.12 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.scss +3 -1
- package/package.json +1 -1
- package/src/base/index.scss +44 -30
- package/src/components/_avatar.scss +122 -122
- package/src/components/_badge.scss +178 -178
- package/src/components/_breadcrumbs.scss +30 -29
- package/src/components/_button copy.scss +924 -0
- package/src/components/_button.scss +0 -924
- package/src/components/_calendar.scss +180 -180
- package/src/components/_carousel.scss +44 -44
- package/src/components/_checkbox.scss +58 -58
- package/src/components/_collapse.scss +48 -48
- package/src/components/_color-palette.scss +5 -5
- package/src/components/_color-picker.scss +23 -23
- package/src/components/_context-menu.scss +0 -16
- package/src/components/_data-table.scss +1 -1
- package/src/components/_datepicker.scss +5 -5
- package/src/components/_decoration.scss +0 -39
- package/src/components/_dialog.scss +80 -79
- package/src/components/_drawer.scss +112 -112
- package/src/components/_dropdown.scss +162 -216
- package/src/components/_editor-container.scss +0 -155
- package/src/components/_fieldset.scss +1 -6
- package/src/components/_image.scss +1 -1
- package/src/components/_label.scss +1 -1
- package/src/components/_list.scss +0 -83
- package/src/components/_loading.scss +1 -50
- package/src/components/_menu copy.scss +5 -5
- package/src/components/_menu.scss +114 -114
- package/src/components/_popup.scss +92 -91
- package/src/components/_progress.scss +59 -59
- package/src/components/_radio.scss +30 -30
- package/src/components/_range-slider.scss +147 -125
- package/src/components/_result.scss +2 -2
- package/src/components/_selectbox.scss +15 -17
- package/src/components/_selection-list.scss +2 -2
- package/src/components/_skeleton.scss +2 -2
- package/src/components/_switch.scss +0 -186
- package/src/components/_table.scss +0 -81
- package/src/components/_tabs copy.scss +18 -18
- package/src/components/_tabs.scss +235 -235
- package/src/components/_textarea.scss +27 -31
- package/src/components/_toast.scss +1 -1
- package/src/components/_treeview.scss +0 -54
- package/src/components/_uploader.scss +0 -18
- package/src/components/index.scss +1 -47
- package/src/icons/demo.html +892 -738
- package/src/icons/fonts/acorex-icons.eot +0 -0
- package/src/icons/fonts/acorex-icons.svg +71 -0
- package/src/icons/fonts/acorex-icons.ttf +0 -0
- package/src/icons/fonts/acorex-icons.woff +0 -0
- package/src/icons/selection.json +1 -1
- package/src/icons/style.css +210 -177
- package/src/icons/style.scss +335 -280
- package/src/icons/variables.scss +65 -54
- package/src/mixins/_media.scss +27 -0
- package/src/mixins/index.scss +1 -0
- package/src/shared/_check-box.scss +45 -0
- package/src/shared/_decoration.scss +56 -0
- package/src/shared/_drop-down.scss +163 -0
- package/src/shared/_editor-container.scss +130 -0
- package/src/shared/_general-button.scss +42 -0
- package/src/shared/_icon-control.scss +0 -0
- package/src/shared/_inputs.scss +12 -0
- package/src/shared/_list.scss +134 -0
- package/src/shared/_radio.scss +37 -0
- package/src/shared/_skeleton.scss +26 -0
- package/src/shared/_table.scss +116 -0
- package/src/shared/_utils.scss +46 -0
- package/src/shared/index.scss +12 -0
- package/src/utility/_mixins.scss +3 -3
- package/src/utility/index.scss +16 -22
- package/src/variables/_colors.scss +76 -107
- package/src/variables/_degrees.scss +1 -0
- package/src/variables/index.scss +2 -0
- package/{index.js → tailwind.config.js} +14 -63
- package/src/components/_alert.scss +0 -276
- package/src/icons/fonts/acorex-icon.eot +0 -0
- package/src/icons/fonts/acorex-icon.svg +0 -60
- package/src/icons/fonts/acorex-icon.ttf +0 -0
- package/src/icons/fonts/acorex-icon.woff +0 -0
@@ -0,0 +1,134 @@
|
|
1
|
+
@import "../mixins/index.scss";
|
2
|
+
|
3
|
+
.ax-list {
|
4
|
+
display: flex;
|
5
|
+
flex-direction: column;
|
6
|
+
overflow: hidden;
|
7
|
+
font-size: 0.875rem;
|
8
|
+
background-color: rgb(var(--ax-color-surface));
|
9
|
+
|
10
|
+
@include media("desktop") {
|
11
|
+
max-height: 320px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.ax-header,
|
15
|
+
.ax-footer {
|
16
|
+
display: flex;
|
17
|
+
justify-content: space-between;
|
18
|
+
align-items: center;
|
19
|
+
background-color: rgb(var(--ax-color-surface));
|
20
|
+
border-color: rgb(var(--ax-color-border-default));
|
21
|
+
}
|
22
|
+
|
23
|
+
.ax-footer {
|
24
|
+
border-top: 1px solid;
|
25
|
+
}
|
26
|
+
|
27
|
+
.ax-content {
|
28
|
+
flex: 1 1 0%;
|
29
|
+
overflow-y: auto;
|
30
|
+
overflow-x: hidden;
|
31
|
+
|
32
|
+
&.ax-list-items-container {
|
33
|
+
padding-top: 0.5rem;
|
34
|
+
padding-bottom: 0.5rem;
|
35
|
+
overflow-y: auto;
|
36
|
+
height: 100%;
|
37
|
+
|
38
|
+
&.ax-vertical {
|
39
|
+
display: grid;
|
40
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
41
|
+
|
42
|
+
&.ax-divide {
|
43
|
+
border-top: 1px solid;
|
44
|
+
border-bottom: 1px solid;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
&.ax-default {
|
49
|
+
cursor: pointer;
|
50
|
+
|
51
|
+
.ax-list-item-group {
|
52
|
+
& > span {
|
53
|
+
font-weight: bold;
|
54
|
+
display: flex;
|
55
|
+
align-items: center;
|
56
|
+
padding: 0.75rem;
|
57
|
+
}
|
58
|
+
|
59
|
+
& > ul {
|
60
|
+
padding-left: 0.75rem;
|
61
|
+
padding-right: 0.75rem;
|
62
|
+
}
|
63
|
+
.ax-list-item {
|
64
|
+
border-radius: var(--ax-rounded-border-default);
|
65
|
+
margin-bottom: 0.2rem;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
.ax-list-item {
|
70
|
+
padding-top: 0.5rem;
|
71
|
+
padding-bottom: 0.5rem;
|
72
|
+
padding-inline-start: 0.75rem;
|
73
|
+
padding-inline-end: 1rem;
|
74
|
+
position: relative;
|
75
|
+
&:focus,
|
76
|
+
&:focus-visible {
|
77
|
+
outline: 2px solid transparent;
|
78
|
+
outline-offset: 2px;
|
79
|
+
}
|
80
|
+
|
81
|
+
&.ax-state-selected {
|
82
|
+
&:not(&.ax-check-box){
|
83
|
+
&::after {
|
84
|
+
position: absolute;
|
85
|
+
inset-inline-end: 0;
|
86
|
+
top: 50%;
|
87
|
+
transform: translate(-50%, -50%);
|
88
|
+
font-size: 1.5rem;
|
89
|
+
font-family: "acorex-icons";
|
90
|
+
content: "\e912";
|
91
|
+
color: rgb(var(--ax-color-primary));
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
// &:not(.ax-check-box) {
|
97
|
+
// &.ax-state-selected {
|
98
|
+
// }
|
99
|
+
// }
|
100
|
+
|
101
|
+
&.ax-state-disabled {
|
102
|
+
cursor: not-allowed;
|
103
|
+
opacity: 0.5;
|
104
|
+
}
|
105
|
+
|
106
|
+
&:focus,
|
107
|
+
&:focus-within,
|
108
|
+
&:hover {
|
109
|
+
background-color: rgba(var(--ax-color-ghost), 0.05);
|
110
|
+
}
|
111
|
+
&.ax-state-focus {
|
112
|
+
background-color: rgba(var(--ax-color-ghost), 0.05);
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.ax-list-loading-container {
|
118
|
+
display: flex;
|
119
|
+
justify-content: center;
|
120
|
+
padding: 0.5rem;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
.ax-search-box-container {
|
126
|
+
padding: 0.5rem;
|
127
|
+
|
128
|
+
&.ax-state-hidden {
|
129
|
+
display: none;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
.ax-footer {
|
133
|
+
}
|
134
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
.ax-dark {
|
2
|
+
.ax-radio {
|
3
|
+
background-color: rgba(var(--ax-color-ghost), 0.05);
|
4
|
+
}
|
5
|
+
}
|
6
|
+
.ax-radio {
|
7
|
+
width: 1rem;
|
8
|
+
height: 1rem;
|
9
|
+
border: 1px solid;
|
10
|
+
border-color: rgb(var(--ax-color-border-default));
|
11
|
+
border-radius: 999rem;
|
12
|
+
background-color: rgb(var(--ax-color-surface));
|
13
|
+
outline: 2px solid transparent;
|
14
|
+
outline-offset: 2px;
|
15
|
+
vertical-align: middle;
|
16
|
+
appearance: none;
|
17
|
+
|
18
|
+
&:checked {
|
19
|
+
border-color: rgb(var(--ax-color-primary));
|
20
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
21
|
+
background-color: rgb(var(--ax-color-primary));
|
22
|
+
background-repeat: no-repeat;
|
23
|
+
background-size: contain;
|
24
|
+
}
|
25
|
+
|
26
|
+
&:focus {
|
27
|
+
outline-offset: 2px;
|
28
|
+
outline-width: 2px;
|
29
|
+
outline-style: solid;
|
30
|
+
outline-color: rgba(var(--ax-color-primary));
|
31
|
+
}
|
32
|
+
|
33
|
+
&:disabled {
|
34
|
+
opacity: 0.5;
|
35
|
+
cursor: not-allowed;
|
36
|
+
}
|
37
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
.ax-skeleton {
|
2
|
+
position: relative;
|
3
|
+
overflow: hidden;
|
4
|
+
background-color: rgba(var(--ax-color-ghost),0.05);
|
5
|
+
&.ax-skeleton-animate {
|
6
|
+
&::before {
|
7
|
+
content: "";
|
8
|
+
display: block;
|
9
|
+
position: absolute;
|
10
|
+
top: 0;
|
11
|
+
height: 100%;
|
12
|
+
width: 14rem;
|
13
|
+
left: -200px;
|
14
|
+
background: linear-gradient(to right, transparent 0%, rgba(var(--ax-color-ghost),0.03) 50%, transparent 100%);
|
15
|
+
animation: load 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
@keyframes load {
|
20
|
+
from {
|
21
|
+
left: -200px;
|
22
|
+
}
|
23
|
+
to {
|
24
|
+
left: 100%;
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,116 @@
|
|
1
|
+
@layer components {
|
2
|
+
.ax-table {
|
3
|
+
width: 100%;
|
4
|
+
border-radius: var(--ax-rounded-border-default);
|
5
|
+
border-collapse: collapse;
|
6
|
+
border: 1px solid;
|
7
|
+
border-color: rgb(var(--ax-color-border-default));
|
8
|
+
overflow: hidden;
|
9
|
+
font-size: 0.875rem;
|
10
|
+
td {
|
11
|
+
border-bottom: 1px solid;
|
12
|
+
border-color: rgb(var(--ax-color-border-default));
|
13
|
+
padding: 1rem 1.5rem;
|
14
|
+
}
|
15
|
+
thead {
|
16
|
+
background-color: rgb(var(--ax-color-ghost), 0.05);
|
17
|
+
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
|
18
|
+
border-bottom: 1px solid;
|
19
|
+
border-color: rgb(var(--ax-color-border-default));
|
20
|
+
th {
|
21
|
+
font-weight: bold;
|
22
|
+
text-align: start;
|
23
|
+
padding: 1rem 1.5rem;
|
24
|
+
|
25
|
+
}
|
26
|
+
}
|
27
|
+
&.ax-table-alternate {
|
28
|
+
tbody {
|
29
|
+
tr {
|
30
|
+
&:nth-child(even) {
|
31
|
+
background-color: rgb(var(--ax-color-ghost), 0.03);
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
&.ax-table-bordered {
|
37
|
+
thead {
|
38
|
+
th {
|
39
|
+
border-top: 0 !important;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
tbody {
|
43
|
+
tr {
|
44
|
+
&:last-child {
|
45
|
+
td {
|
46
|
+
border-bottom: 0 !important;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
td {
|
50
|
+
&:last-child {
|
51
|
+
border-bottom: 0 !important;
|
52
|
+
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
td,
|
59
|
+
th {
|
60
|
+
border: 1px solid;
|
61
|
+
border-color: rgb(var(--ax-color-border-default));
|
62
|
+
&:first-child {
|
63
|
+
border-inline-start-width: 0px;
|
64
|
+
|
65
|
+
}
|
66
|
+
&:last-child {
|
67
|
+
border-inline-end-width: 0px;
|
68
|
+
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
@media screen and (max-width: 601px) {
|
73
|
+
&.ax-table-responsive {
|
74
|
+
overflow-wrap: break-word;
|
75
|
+
display: block;
|
76
|
+
border: 0px;
|
77
|
+
thead {
|
78
|
+
position: absolute;
|
79
|
+
inset-inline-start: -100%;
|
80
|
+
top: -100%;
|
81
|
+
|
82
|
+
}
|
83
|
+
|
84
|
+
td {
|
85
|
+
|
86
|
+
display: block;
|
87
|
+
float: inline-start;
|
88
|
+
width: 100%;
|
89
|
+
clear: both;
|
90
|
+
background: rgb(var(--ax-color-surface));
|
91
|
+
padding: 0.375rem 0.625rem;
|
92
|
+
box-sizing: border-box;
|
93
|
+
&:last-child{
|
94
|
+
border: 0;
|
95
|
+
}
|
96
|
+
&:before {
|
97
|
+
content: attr(data-label);
|
98
|
+
display: block;
|
99
|
+
font-weight: bold;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
tr {
|
103
|
+
border: 1px solid;
|
104
|
+
border-color: rgb(var(--ax-color-border-default));
|
105
|
+
}
|
106
|
+
tr,
|
107
|
+
tbody {
|
108
|
+
display: block;
|
109
|
+
width: 100%;
|
110
|
+
float: inline-start;
|
111
|
+
margin-bottom: 0.625rem;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
@import "../variables/index.scss";
|
2
|
+
|
3
|
+
[class*=" ax-icon-"],
|
4
|
+
[class^="ax-icon-"] {
|
5
|
+
vertical-align: middle;
|
6
|
+
}
|
7
|
+
|
8
|
+
.ax-rotaion-0 {
|
9
|
+
transform: rotate(0);
|
10
|
+
}
|
11
|
+
|
12
|
+
@each $deg in $degrees {
|
13
|
+
.ax-rotation-#{$deg} {
|
14
|
+
transform: rotate(#{$deg}deg);
|
15
|
+
}
|
16
|
+
|
17
|
+
.-ax-rotation-#{$deg} {
|
18
|
+
transform: rotate(-#{$deg}deg);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.ax-transition-all {
|
23
|
+
transition-property: all;
|
24
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25
|
+
transition-duration: 150ms;
|
26
|
+
}
|
27
|
+
|
28
|
+
.ax-w-full {
|
29
|
+
width: 100%;
|
30
|
+
}
|
31
|
+
|
32
|
+
.ax-h-full {
|
33
|
+
height: 100%;
|
34
|
+
}
|
35
|
+
|
36
|
+
.ax-fieldset {
|
37
|
+
@apply ax-border ax-border-solid ax-border-neutral-300 ax-p-3 ax-rounded dark:ax-border-white/10;
|
38
|
+
border: 1px solid;
|
39
|
+
border-color: rgb(var(--ax-color-border-default));
|
40
|
+
padding: 0.75rem;
|
41
|
+
border-radius: var(--ax-rounded-border-default);
|
42
|
+
legend {
|
43
|
+
font-size: 0.875rem;
|
44
|
+
padding: 0 0.25rem;
|
45
|
+
}
|
46
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
@import "./check-box";
|
2
|
+
@import "./decoration";
|
3
|
+
@import "./drop-down";
|
4
|
+
@import "./editor-container";
|
5
|
+
@import "./general-button";
|
6
|
+
@import "./icon-control";
|
7
|
+
@import "./inputs";
|
8
|
+
@import "./list";
|
9
|
+
@import "./radio";
|
10
|
+
@import "./skeleton";
|
11
|
+
@import "./table";
|
12
|
+
@import "./utils";
|
package/src/utility/_mixins.scss
CHANGED
@@ -70,13 +70,13 @@
|
|
70
70
|
|
71
71
|
@mixin control-states($type) {
|
72
72
|
@if ($type == "editor") {
|
73
|
-
@apply dark:ax-border-white/10 dark:ax-bg-white/10 dark:ax-backdrop-blur-3xl;
|
73
|
+
// @apply dark:ax-border-white/10 dark:ax-bg-white/10 dark:ax-backdrop-blur-3xl;
|
74
74
|
}
|
75
75
|
@if ($type == "editor-disabled") {
|
76
|
-
@apply ax-bg-
|
76
|
+
// @apply ax-bg-neutral-100 ax-text-neutral-fore dark:ax-border-white/10 dark:ax-bg-white/[0.-04] dark:ax-text-opacity-60 ax-cursor-not-allowed #{!important};
|
77
77
|
}
|
78
78
|
@if ($type == "surface") {
|
79
|
-
@apply dark:ax-bg-
|
79
|
+
// @apply dark:ax-bg-body-background dark:ax-border-white/10 ;
|
80
80
|
}
|
81
81
|
}
|
82
82
|
|
package/src/utility/index.scss
CHANGED
@@ -1,26 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
.ax-sm {
|
2
|
+
--ax-size-default: 2rem;
|
3
|
+
font-size: 0.75rem;
|
4
|
+
* {
|
4
5
|
font-size: 0.75rem;
|
5
|
-
* {
|
6
|
-
font-size: 0.75rem;
|
7
|
-
}
|
8
6
|
}
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
font-size: 1rem;
|
19
|
-
* {
|
20
|
-
font-size: 1rem;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
.ax-filp {
|
24
|
-
transform: scale(-1, 1);
|
7
|
+
}
|
8
|
+
.ax-md {
|
9
|
+
font-size: 0.875rem;
|
10
|
+
}
|
11
|
+
.ax-lg {
|
12
|
+
--ax-size-default: 3rem;
|
13
|
+
font-size: 1.25rem;
|
14
|
+
* {
|
15
|
+
font-size: 1.25rem;
|
25
16
|
}
|
26
17
|
}
|
18
|
+
.ax-filp {
|
19
|
+
transform: scale(-1, 1);
|
20
|
+
}
|
@@ -1,122 +1,91 @@
|
|
1
|
+
$color_names: "primary", "secondary", "success", "warning", "danger";
|
2
|
+
$look_names: "default", "outline", "blank";
|
1
3
|
$theme-colors: (
|
2
4
|
"white": "255 255 255",
|
3
5
|
"black": "0 0 0",
|
4
|
-
"placeholder": "156 163 175",
|
5
|
-
"border": "209 213 219",
|
6
|
-
"disabled": "224 224 224",
|
7
|
-
"disabled-fore": "117 117 117",
|
8
|
-
"disabled-border": "191 191 191",
|
9
6
|
"primary": (
|
10
|
-
"": "59 130 246",
|
11
|
-
"fore": "255 255 255",
|
12
|
-
"50": "239 246 255",
|
13
|
-
"100": "219 234 254",
|
14
|
-
"200": "191 219 254",
|
15
|
-
"300": "147 197 253",
|
16
|
-
"400": "96 165 250",
|
17
|
-
"500": "59 130 246",
|
18
|
-
"600": "37 99 235",
|
19
|
-
"700": "29 78 216",
|
20
|
-
"800": "30 64 175",
|
21
|
-
"900": "30 58 138",
|
7
|
+
"": "59, 130, 246",
|
8
|
+
"fore": "255, 255, 255",
|
9
|
+
"50": "239, 246, 255",
|
10
|
+
"100": "219, 234, 254",
|
11
|
+
"200": "191, 219, 254",
|
12
|
+
"300": "147, 197, 253",
|
13
|
+
"400": "96, 165, 250",
|
14
|
+
"500": "59, 130, 246",
|
15
|
+
"600": "37, 99, 235",
|
16
|
+
"700": "29, 78, 216",
|
17
|
+
"800": "30, 64, 175",
|
18
|
+
"900": "30, 58, 138",
|
22
19
|
),
|
23
20
|
"secondary": (
|
24
|
-
"": "
|
25
|
-
"fore": "255 255 255",
|
26
|
-
"50": "
|
27
|
-
"100": "
|
28
|
-
"200": "
|
29
|
-
"300": "
|
30
|
-
"400": "
|
31
|
-
"500": "
|
32
|
-
"600": "
|
33
|
-
"700": "
|
34
|
-
"800": "
|
35
|
-
"900": "
|
21
|
+
"": "73, 82, 97",
|
22
|
+
"fore": "255, 255, 255",
|
23
|
+
"50": "233, 234, 236",
|
24
|
+
"100": "200, 203, 208",
|
25
|
+
"200": "164, 169, 176",
|
26
|
+
"300": "128, 134, 144",
|
27
|
+
"400": "100, 108, 121",
|
28
|
+
"500": "73, 82, 97",
|
29
|
+
"600": "66, 75, 89",
|
30
|
+
"700": "57, 65, 79",
|
31
|
+
"800": "49, 56, 69",
|
32
|
+
"900": "33, 40, 51",
|
36
33
|
),
|
37
34
|
"success": (
|
38
|
-
"": "
|
39
|
-
"fore": "255 255 255",
|
40
|
-
"50": "236 253 245",
|
41
|
-
"100": "209 250 229",
|
42
|
-
"200": "167 243 208",
|
43
|
-
"300": "110 231 183",
|
44
|
-
"400": "52 211 153",
|
45
|
-
"500": "16 185 129",
|
46
|
-
"600": "5 150 105",
|
47
|
-
"700": "4 120 87",
|
48
|
-
"800": "6 95 70",
|
49
|
-
"900": "6 78 59",
|
35
|
+
"": "16, 185, 129",
|
36
|
+
"fore": "255, 255, 255",
|
37
|
+
"50": "236, 253, 245",
|
38
|
+
"100": "209, 250, 229",
|
39
|
+
"200": "167, 243, 208",
|
40
|
+
"300": "110, 231, 183",
|
41
|
+
"400": "52, 211, 153",
|
42
|
+
"500": "16, 185, 129",
|
43
|
+
"600": "5, 150, 105",
|
44
|
+
"700": "4, 120, 87",
|
45
|
+
"800": "6, 95, 70",
|
46
|
+
"900": "6, 78, 59",
|
50
47
|
),
|
51
48
|
"danger": (
|
52
|
-
"": "
|
53
|
-
"fore": "255
|
54
|
-
"50": "
|
55
|
-
"100": "
|
56
|
-
"200": "254
|
57
|
-
"300": "
|
58
|
-
"400": "
|
59
|
-
"500": "
|
60
|
-
"600": "
|
61
|
-
"700": "
|
62
|
-
"800": "
|
63
|
-
"900": "
|
49
|
+
"": "239, 68, 68",
|
50
|
+
"fore": "255, 255, 255",
|
51
|
+
"50": "254, 242, 242",
|
52
|
+
"100": "254, 226, 226",
|
53
|
+
"200": "254, 202, 202",
|
54
|
+
"300": "252, 165, 165",
|
55
|
+
"400": "248, 113, 113",
|
56
|
+
"500": "239, 68, 68",
|
57
|
+
"600": "220, 38, 38",
|
58
|
+
"700": "185, 28, 28",
|
59
|
+
"800": "153, 27, 27",
|
60
|
+
"900": "127, 29, 29",
|
64
61
|
),
|
65
62
|
"warning": (
|
66
|
-
"": "
|
67
|
-
"fore": "
|
68
|
-
"50": "255
|
69
|
-
"100": "
|
70
|
-
"200": "
|
71
|
-
"300": "
|
72
|
-
"400": "
|
73
|
-
"500": "
|
74
|
-
"600": "
|
75
|
-
"700": "
|
76
|
-
"800": "
|
77
|
-
"900": "
|
63
|
+
"": "245, 158, 11",
|
64
|
+
"fore": "0, 0, 0",
|
65
|
+
"50": "255, 251, 235",
|
66
|
+
"100": "254, 243, 199",
|
67
|
+
"200": "253, 230, 138",
|
68
|
+
"300": "252, 211, 77",
|
69
|
+
"400": "251, 191, 36",
|
70
|
+
"500": "245, 158, 11",
|
71
|
+
"600": "217, 119, 6",
|
72
|
+
"700": "180, 83, 9",
|
73
|
+
"800": "146, 64, 14",
|
74
|
+
"900": "120, 53, 15",
|
78
75
|
),
|
79
|
-
"
|
80
|
-
"": "
|
81
|
-
"fore": "
|
82
|
-
"50": "
|
83
|
-
"100": "
|
84
|
-
"200": "
|
85
|
-
"300": "
|
86
|
-
"400": "
|
87
|
-
"500": "
|
88
|
-
"600": "
|
89
|
-
"700": "
|
90
|
-
"800": "
|
91
|
-
"900": "
|
92
|
-
),
|
93
|
-
"light": (
|
94
|
-
"": "100 116 139",
|
95
|
-
"fore": "15 23 42",
|
96
|
-
"50": "248 250 252",
|
97
|
-
"100": "241 245 249",
|
98
|
-
"200": "226 232 240",
|
99
|
-
"300": "203 213 225",
|
100
|
-
"400": "148 163 184",
|
101
|
-
"500": "100 116 139",
|
102
|
-
"600": "71 85 105",
|
103
|
-
"700": "51 65 85",
|
104
|
-
"800": "30 41 59",
|
105
|
-
"900": "15 23 42",
|
106
|
-
),
|
107
|
-
"dark": (
|
108
|
-
"": "21 21 21",
|
109
|
-
"fore": "255 255 255",
|
110
|
-
"50": "227 227 227",
|
111
|
-
"100": "185 185 185",
|
112
|
-
"200": "138 138 138",
|
113
|
-
"300": "91 91 91",
|
114
|
-
"400": "56 56 56",
|
115
|
-
"500": "21 21 21",
|
116
|
-
"600": "18 18 18",
|
117
|
-
"700": "15 15 15",
|
118
|
-
"800": "12 12 12",
|
119
|
-
"900": "6 6 6",
|
76
|
+
"neutral": (
|
77
|
+
"": "113, 113, 122",
|
78
|
+
"fore": "24, 24, 27",
|
79
|
+
"50": "250, 250, 250",
|
80
|
+
"100": "244, 244, 245",
|
81
|
+
"200": "228, 228, 231",
|
82
|
+
"300": "212, 212, 216",
|
83
|
+
"400": "161, 161, 170",
|
84
|
+
"500": "113, 113, 122",
|
85
|
+
"600": "82, 82, 91",
|
86
|
+
"700": "63, 63, 70",
|
87
|
+
"800": "39, 39, 42",
|
88
|
+
"900": "24, 24, 27",
|
120
89
|
)
|
121
|
-
|
90
|
+
|
122
91
|
);
|
@@ -0,0 +1 @@
|
|
1
|
+
$degrees: 45, 90, 130, 180;
|