@openedx/paragon 23.0.0-alpha.3 → 23.0.0-alpha.4
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/bin/paragon-scripts.js +10 -0
- package/dist/Annotation/index.scss +16 -0
- package/dist/Card/CardDeck.js +0 -2
- package/dist/Card/CardDeck.js.map +1 -1
- package/dist/Card/index.scss +6 -6
- package/dist/Carousel/index.scss +24 -1
- package/dist/Chip/ChipIcon.d.ts +1 -1
- package/dist/CloseButton/index.scss +8 -0
- package/dist/ColorPicker/index.scss +1 -1
- package/dist/DataTable/index.scss +12 -0
- package/dist/Dropdown/dropdown-bootstrap.scss +6 -0
- package/dist/Dropzone/index.scss +34 -0
- package/dist/Form/_FormText.scss +1 -1
- package/dist/Form/_bootstrap-custom-forms.scss +40 -0
- package/dist/Form/_index.scss +9 -0
- package/dist/Form/_mixins.scss +22 -0
- package/dist/IconButton/index.d.ts +1 -1
- package/dist/IconButton/index.scss +146 -0
- package/dist/Menu/index.scss +8 -0
- package/dist/Modal/ModalDialog.js +8 -4
- package/dist/Modal/ModalDialog.js.map +1 -1
- package/dist/Modal/_ModalDialog.scss +22 -2
- package/dist/Nav/index.scss +8 -0
- package/dist/Overlay/index.d.ts +2 -2
- package/dist/PageBanner/index.scss +2 -2
- package/dist/Pagination/pagination-bootstrap.scss +9 -0
- package/dist/Popover/index.scss +1 -1
- package/dist/ProductTour/Checkpoint.scss +1 -1
- package/dist/ProgressBar/bootstrap-progress.scss +20 -5
- package/dist/ProgressBar/index.scss +3 -3
- package/dist/Stepper/index.scss +1 -1
- package/dist/Sticky/index.scss +12 -0
- package/dist/Toast/index.scss +13 -1
- package/dist/Tooltip/index.scss +16 -0
- package/dist/core.css +911 -470
- package/dist/core.css.map +1 -1
- package/dist/core.min.css +1 -1
- package/dist/light.css +2035 -1315
- package/dist/light.css.map +1 -1
- package/dist/light.min.css +1 -1
- package/lib/build-tokens.js +67 -31
- package/package.json +7 -4
- package/src/Annotation/index.scss +16 -0
- package/src/Card/CardDeck.jsx +0 -3
- package/src/Card/README.md +0 -31
- package/src/Card/index.scss +6 -6
- package/src/Carousel/index.scss +24 -1
- package/src/CloseButton/index.scss +8 -0
- package/src/ColorPicker/index.scss +1 -1
- package/src/DataTable/index.scss +12 -0
- package/src/Dropdown/dropdown-bootstrap.scss +6 -0
- package/src/Dropzone/index.scss +34 -0
- package/src/Form/_FormText.scss +1 -1
- package/src/Form/_bootstrap-custom-forms.scss +40 -0
- package/src/Form/_index.scss +9 -0
- package/src/Form/_mixins.scss +22 -0
- package/src/IconButton/index.scss +146 -0
- package/src/Menu/index.scss +8 -0
- package/src/Modal/ModalDialog.jsx +7 -3
- package/src/Modal/_ModalDialog.scss +22 -2
- package/src/Modal/modal-dialog.mdx +95 -6
- package/src/Modal/tests/ModalDialog.test.jsx +2 -0
- package/src/Nav/index.scss +8 -0
- package/src/PageBanner/index.scss +2 -2
- package/src/Pagination/pagination-bootstrap.scss +9 -0
- package/src/Popover/index.scss +1 -1
- package/src/ProductTour/Checkpoint.scss +1 -1
- package/src/ProgressBar/bootstrap-progress.scss +20 -5
- package/src/ProgressBar/index.scss +3 -3
- package/src/Stepper/index.scss +1 -1
- package/src/Sticky/index.scss +12 -0
- package/src/Toast/index.scss +13 -1
- package/src/Tooltip/index.scss +16 -0
- package/styles/css/core/abstraction-variables.css +44 -0
- package/styles/css/core/custom-media-breakpoints.css +3 -4
- package/styles/css/core/index.css +2 -1
- package/styles/css/core/variables.css +494 -430
- package/styles/css/themes/light/abstraction-variables.css +304 -0
- package/styles/css/themes/light/index.css +1 -0
- package/styles/css/themes/light/utility-classes.css +2 -3
- package/styles/css/themes/light/variables.css +1753 -1334
- package/styles/scss/core/_typography.scss +16 -4
- package/styles/scss/core/_utilities.scss +7 -3
- package/styles/scss/core/_variables.scss +43 -30
- package/styles/scss/core/core.scss +1 -0
- package/tokens/src/core/alias/size.json +6 -5
- package/tokens/src/core/components/ActionRow.json +3 -2
- package/tokens/src/core/components/Alert.json +12 -10
- package/tokens/src/core/components/Annotation.json +9 -7
- package/tokens/src/core/components/Avatar.json +9 -9
- package/tokens/src/core/components/AvatarButton.json +4 -3
- package/tokens/src/core/components/Badge.json +12 -9
- package/tokens/src/core/components/Breadcrumb.json +7 -5
- package/tokens/src/core/components/Bubble.json +4 -3
- package/tokens/src/core/components/Button/core.json +35 -59
- package/tokens/src/core/components/Card.json +33 -44
- package/tokens/src/core/components/Carousel.json +39 -13
- package/tokens/src/core/components/Chip.json +13 -21
- package/tokens/src/core/components/ChipCarousel.json +4 -5
- package/tokens/src/core/components/CloseButton.json +2 -6
- package/tokens/src/core/components/Code.json +9 -8
- package/tokens/src/core/components/Collapsible.json +10 -13
- package/tokens/src/core/components/ColorPicker.json +3 -2
- package/tokens/src/core/components/Container.json +6 -5
- package/tokens/src/core/components/DataTable.json +17 -9
- package/tokens/src/core/components/Dropdown.json +24 -29
- package/tokens/src/core/components/Dropzone.json +5 -7
- package/tokens/src/core/components/Form/other.json +5 -4
- package/tokens/src/core/components/Form/size.json +72 -119
- package/tokens/src/core/components/Form/spacing.json +39 -83
- package/tokens/src/core/components/Form/transition.json +43 -7
- package/tokens/src/core/components/Form/typography.json +24 -88
- package/tokens/src/core/components/Icon.json +6 -5
- package/tokens/src/core/components/IconButton.json +4 -7
- package/tokens/src/core/components/Image.json +7 -6
- package/tokens/src/core/components/Menu.json +14 -12
- package/tokens/src/core/components/Modal.json +26 -21
- package/tokens/src/core/components/Nav.json +14 -16
- package/tokens/src/core/components/Navbar.json +15 -30
- package/tokens/src/core/components/Pagination.json +23 -24
- package/tokens/src/core/components/Popover.json +18 -14
- package/tokens/src/core/components/ProductTour.json +8 -14
- package/tokens/src/core/components/ProgressBar.json +29 -14
- package/tokens/src/core/components/SearchField.json +7 -9
- package/tokens/src/core/components/SelectableBox.json +4 -3
- package/tokens/src/core/components/Sheet.json +3 -2
- package/tokens/src/core/components/Spinner.json +9 -7
- package/tokens/src/core/components/Stack.json +2 -1
- package/tokens/src/core/components/Stepper.json +12 -14
- package/tokens/src/core/components/Sticky.json +2 -1
- package/tokens/src/core/components/Tab.json +8 -7
- package/tokens/src/core/components/Tabs.json +5 -5
- package/tokens/src/core/components/Toast.json +11 -8
- package/tokens/src/core/components/Tooltip.json +13 -11
- package/tokens/src/core/components/general/caret.json +5 -3
- package/tokens/src/core/components/general/headings.json +5 -4
- package/tokens/src/core/components/general/hr.json +3 -2
- package/tokens/src/core/components/general/input.json +19 -19
- package/tokens/src/core/components/general/link.json +13 -12
- package/tokens/src/core/components/general/list.json +9 -6
- package/tokens/src/core/components/general/text.json +6 -12
- package/tokens/src/core/global/breakpoints.json +25 -6
- package/tokens/src/core/global/elevation.json +55 -13
- package/tokens/src/core/global/other.json +5 -1
- package/tokens/src/core/global/spacing.json +70 -17
- package/tokens/src/core/global/transition.json +41 -4
- package/tokens/src/core/global/typography.json +248 -53
- package/tokens/src/core/utilities/color.json +35 -4
- package/tokens/src/themes/light/alias/color.json +276 -75
- package/tokens/src/themes/light/components/Alert.json +15 -26
- package/tokens/src/themes/light/components/Annotation.json +27 -13
- package/tokens/src/themes/light/components/Avatar.json +2 -1
- package/tokens/src/themes/light/components/Badge.json +57 -122
- package/tokens/src/themes/light/components/Breadcrumb.json +6 -5
- package/tokens/src/themes/light/components/Bubble.json +9 -8
- package/tokens/src/themes/light/components/Button/brand.json +171 -119
- package/tokens/src/themes/light/components/Button/core.json +8 -9
- package/tokens/src/themes/light/components/Button/danger.json +171 -112
- package/tokens/src/themes/light/components/Button/dark.json +188 -106
- package/tokens/src/themes/light/components/Button/info.json +186 -112
- package/tokens/src/themes/light/components/Button/light.json +186 -110
- package/tokens/src/themes/light/components/Button/primary.json +178 -116
- package/tokens/src/themes/light/components/Button/secondary.json +166 -132
- package/tokens/src/themes/light/components/Button/success.json +176 -117
- package/tokens/src/themes/light/components/Button/tertiary.json +34 -60
- package/tokens/src/themes/light/components/Button/warning.json +164 -128
- package/tokens/src/themes/light/components/Card.json +10 -21
- package/tokens/src/themes/light/components/Carousel.json +12 -11
- package/tokens/src/themes/light/components/Chip.json +14 -26
- package/tokens/src/themes/light/components/CloseButton.json +12 -2
- package/tokens/src/themes/light/components/Code.json +7 -9
- package/tokens/src/themes/light/components/DataTable.json +7 -11
- package/tokens/src/themes/light/components/Dropdown.json +17 -20
- package/tokens/src/themes/light/components/Dropzone.json +49 -11
- package/tokens/src/themes/light/components/Form/color.json +101 -155
- package/tokens/src/themes/light/components/Form/elevation.json +38 -42
- package/tokens/src/themes/light/components/Form/other.json +44 -41
- package/tokens/src/themes/light/components/IconButton.json +408 -256
- package/tokens/src/themes/light/components/Image.json +7 -4
- package/tokens/src/themes/light/components/Menu.json +12 -10
- package/tokens/src/themes/light/components/Modal.json +22 -12
- package/tokens/src/themes/light/components/Nav.json +82 -94
- package/tokens/src/themes/light/components/Navbar.json +32 -76
- package/tokens/src/themes/light/components/OverflowScroll.json +3 -1
- package/tokens/src/themes/light/components/PageBanner.json +11 -10
- package/tokens/src/themes/light/components/Pagination.json +19 -23
- package/tokens/src/themes/light/components/Popover.json +22 -27
- package/tokens/src/themes/light/components/ProductTour.json +9 -20
- package/tokens/src/themes/light/components/ProgressBar.json +12 -10
- package/tokens/src/themes/light/components/Scrollable.json +3 -3
- package/tokens/src/themes/light/components/SearchField.json +9 -9
- package/tokens/src/themes/light/components/Sheet.json +6 -7
- package/tokens/src/themes/light/components/Stepper.json +12 -17
- package/tokens/src/themes/light/components/Sticky.json +31 -6
- package/tokens/src/themes/light/components/Tab.json +47 -24
- package/tokens/src/themes/light/components/Toast.json +26 -14
- package/tokens/src/themes/light/components/Tooltip.json +25 -10
- package/tokens/src/themes/light/components/general/body.json +3 -2
- package/tokens/src/themes/light/components/general/headings.json +2 -1
- package/tokens/src/themes/light/components/general/hr.json +3 -6
- package/tokens/src/themes/light/components/general/input.json +11 -4
- package/tokens/src/themes/light/components/general/link.json +34 -43
- package/tokens/src/themes/light/components/general/list.json +15 -19
- package/tokens/src/themes/light/components/general/text.json +5 -6
- package/tokens/src/themes/light/global/color.json +1592 -867
- package/tokens/src/themes/light/global/elevation.json +481 -93
- package/tokens/style-dictionary.js +342 -144
- package/tokens/utils.js +176 -6
- package/tokens/src/core/global/display.json +0 -22
|
@@ -1,30 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"tooltip": {
|
|
4
|
-
"text": { "
|
|
5
|
-
"light": { "
|
|
5
|
+
"text": { "source": "$tooltip-color", "$value": "{color.white}" },
|
|
6
|
+
"light": { "source": "$tooltip-color-light", "$value": "{color.black}" },
|
|
6
7
|
"bg": {
|
|
7
|
-
"base": { "
|
|
8
|
-
"light": { "
|
|
8
|
+
"base": { "source": "$tooltip-bg", "$value": "{color.black}" },
|
|
9
|
+
"light": { "source": "$tooltip-bg-light", "$value": "{color.white}" }
|
|
9
10
|
},
|
|
10
11
|
"arrow": {
|
|
11
|
-
"base": { "
|
|
12
|
-
"light": { "
|
|
12
|
+
"base": { "source": "$tooltip-arrow-color", "$value": "{color.tooltip.bg.base}" },
|
|
13
|
+
"light": { "source": "$tooltip-arrow-color-light", "$value": "{color.white}" }
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
},
|
|
16
17
|
"elevation": {
|
|
18
|
+
"$type": "shadow",
|
|
17
19
|
"tooltip": {
|
|
18
20
|
"box-shadow": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
21
|
+
"source": "$tooltip-box-shadow",
|
|
22
|
+
"$value": [
|
|
23
|
+
{
|
|
24
|
+
"color": "rgba(0, 0, 0, .15)",
|
|
25
|
+
"offsetX": "0",
|
|
26
|
+
"offsetY": "2px",
|
|
27
|
+
"blur": "4px"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"color": "rgba(0, 0, 0, .15)",
|
|
31
|
+
"offsetX": "0",
|
|
32
|
+
"offsetY": "2px",
|
|
33
|
+
"blur": "8px"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
22
36
|
}
|
|
23
37
|
}
|
|
24
38
|
},
|
|
25
39
|
"other": {
|
|
40
|
+
"$type": "number",
|
|
26
41
|
"tooltip": {
|
|
27
|
-
"opacity": { "
|
|
42
|
+
"opacity": { "source": "$tooltip-opacity", "$value": "1" }
|
|
28
43
|
}
|
|
29
44
|
}
|
|
30
45
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"body": {
|
|
4
|
-
"base": { "
|
|
5
|
-
"bg": { "
|
|
5
|
+
"base": { "source": "$body-color", "$value": "{color.gray.700}" },
|
|
6
|
+
"bg": { "source": "$body-bg", "$value": "{color.bg.base}" }
|
|
6
7
|
}
|
|
7
8
|
}
|
|
8
9
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"hr": {
|
|
4
5
|
"border": {
|
|
5
|
-
"value": "{color.black}",
|
|
6
|
-
"type": "color",
|
|
7
6
|
"source": "$hr-border-color",
|
|
8
|
-
"modify": [{
|
|
9
|
-
|
|
10
|
-
"amount": 0.1
|
|
11
|
-
}]
|
|
7
|
+
"modify": [{ "type": "alpha", "amount": 0.1 }],
|
|
8
|
+
"$value": "{color.black}"
|
|
12
9
|
}
|
|
13
10
|
}
|
|
14
11
|
}
|
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"input": {
|
|
4
|
-
"btn-focus": { "
|
|
5
|
+
"btn-focus": { "source": "$input-btn-focus-color", "$value": "{color.bg.active}" }
|
|
5
6
|
}
|
|
6
7
|
},
|
|
7
8
|
"elevation": {
|
|
9
|
+
"$type": "shadow",
|
|
8
10
|
"input": {
|
|
9
11
|
"btn-focus": {
|
|
10
12
|
"box-shadow": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
13
|
+
"source": "$input-btn-focus-box-shadow",
|
|
14
|
+
"$value": {
|
|
15
|
+
"color": "{color.input.btn-focus}",
|
|
16
|
+
"spread": "{size.input.btn.focus-width}",
|
|
17
|
+
"offsetX": "0",
|
|
18
|
+
"offsetY": "0",
|
|
19
|
+
"blur": "0"
|
|
20
|
+
}
|
|
14
21
|
}
|
|
15
22
|
}
|
|
16
23
|
}
|
|
@@ -1,96 +1,85 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"link": {
|
|
4
|
-
"base": { "
|
|
5
|
+
"base": { "source": "$link-color", "$value": "{color.info.500}" },
|
|
5
6
|
"hover": {
|
|
6
|
-
"value": "{color.link.base}",
|
|
7
|
-
"type": "color",
|
|
8
7
|
"source": "$link-hover-color",
|
|
9
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
8
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
9
|
+
"$value": "{color.link.base}"
|
|
10
10
|
},
|
|
11
11
|
"inline": {
|
|
12
|
-
"base": { "
|
|
12
|
+
"base": { "source": "$inline-link-color", "$value": "{color.info.500}" },
|
|
13
13
|
"decoration": {
|
|
14
|
-
"value": "{color.link.inline.base}",
|
|
15
|
-
"type": "color",
|
|
16
14
|
"source": "$inline-link-decoration-color",
|
|
17
|
-
"modify": [{ "type": "alpha", "amount": 0.3 }]
|
|
15
|
+
"modify": [{ "type": "alpha", "amount": 0.3 }],
|
|
16
|
+
"$value": "{color.link.inline.base}"
|
|
18
17
|
},
|
|
19
18
|
"hover": {
|
|
20
19
|
"base": {
|
|
21
|
-
"value": "{color.link.inline.base}",
|
|
22
|
-
"type": "color",
|
|
23
20
|
"source": "$inline-link-hover-color",
|
|
24
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
21
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
22
|
+
"$value": "{color.link.inline.base}"
|
|
25
23
|
},
|
|
26
24
|
"decoration": {
|
|
27
|
-
"value": "{color.link.inline.hover.base}",
|
|
28
|
-
"type": "color",
|
|
29
25
|
"source": "$inline-link-hover-decoration-color",
|
|
30
|
-
"modify": [{ "type": "alpha", "amount": 1 }]
|
|
26
|
+
"modify": [{ "type": "alpha", "amount": 1 }],
|
|
27
|
+
"$value": "{color.link.inline.hover.base}"
|
|
31
28
|
}
|
|
32
29
|
}
|
|
33
30
|
},
|
|
34
31
|
"muted": {
|
|
35
|
-
"base": { "
|
|
32
|
+
"base": { "source": "$muted-link-color", "$value": "{color.primary.500}" },
|
|
36
33
|
"hover": {
|
|
37
|
-
"value": "{color.link.muted.base}",
|
|
38
|
-
"type": "color",
|
|
39
34
|
"source": "$muted-link-hover-color",
|
|
40
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
35
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
36
|
+
"$value": "{color.link.muted.base}"
|
|
41
37
|
},
|
|
42
38
|
"inline": {
|
|
43
|
-
"base": { "
|
|
39
|
+
"base": { "source": "$muted-inline-link-color", "$value": "{color.primary.500}" },
|
|
44
40
|
"decoration": {
|
|
45
|
-
"value": "{color.link.muted.inline.base}",
|
|
46
|
-
"type": "color",
|
|
47
41
|
"source": "$muted-inline-link-decoration-color",
|
|
48
|
-
"modify": [{ "type": "alpha", "amount": 0.3 }]
|
|
42
|
+
"modify": [{ "type": "alpha", "amount": 0.3 }],
|
|
43
|
+
"$value": "{color.link.muted.inline.base}"
|
|
49
44
|
},
|
|
50
45
|
"hover": {
|
|
51
46
|
"base": {
|
|
52
|
-
"value": "{color.link.muted.inline.base}",
|
|
53
|
-
"type": "color",
|
|
54
47
|
"source": "$muted-inline-link-hover-color",
|
|
55
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
48
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
49
|
+
"$value": "{color.link.muted.inline.base}"
|
|
56
50
|
},
|
|
57
51
|
"decoration": {
|
|
58
|
-
"value": "{color.link.muted.inline.hover.base}",
|
|
59
|
-
"type": "color",
|
|
60
52
|
"source": "$muted-inline-link-hover-decoration-color",
|
|
61
|
-
"modify": [{ "type": "alpha", "amount": 1 }]
|
|
53
|
+
"modify": [{ "type": "alpha", "amount": 1 }],
|
|
54
|
+
"$value": "{color.link.muted.inline.hover.base}"
|
|
62
55
|
}
|
|
63
56
|
}
|
|
64
57
|
}
|
|
65
58
|
},
|
|
66
59
|
"brand": {
|
|
67
|
-
"base": { "
|
|
60
|
+
"base": { "source": "$brand-link-color", "$value": "{color.brand.500}" },
|
|
68
61
|
"hover": {
|
|
69
|
-
"value": "{color.link.brand.base}",
|
|
70
|
-
"type": "color",
|
|
71
62
|
"source": "$brand-link-hover-color",
|
|
72
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
63
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
64
|
+
"$value": "{color.link.brand.base}"
|
|
73
65
|
},
|
|
74
66
|
"inline": {
|
|
75
|
-
"base": { "
|
|
67
|
+
"base": { "source": "$brand-inline-link-color", "$value": "{color.brand.500}" },
|
|
76
68
|
"decoration": {
|
|
77
|
-
"value": "{color.link.brand.inline.base}",
|
|
78
|
-
"type": "color",
|
|
79
69
|
"source": "$brand-inline-link-decoration-color",
|
|
80
|
-
"modify": [{ "type": "alpha", "amount": 0.3 }]
|
|
70
|
+
"modify": [{ "type": "alpha", "amount": 0.3 }],
|
|
71
|
+
"$value": "{color.link.brand.inline.base}"
|
|
81
72
|
},
|
|
82
73
|
"hover": {
|
|
83
74
|
"base": {
|
|
84
|
-
"value": "{color.link.brand.inline.base}",
|
|
85
|
-
"type": "color",
|
|
86
75
|
"source": "$brand-inline-link-hover-color",
|
|
87
|
-
"modify": [{ "type": "darken", "amount": 0.15 }]
|
|
76
|
+
"modify": [{ "type": "darken", "amount": 0.15 }],
|
|
77
|
+
"$value": "{color.link.brand.inline.base}"
|
|
88
78
|
},
|
|
89
79
|
"decoration": {
|
|
90
|
-
"value": "{color.link.brand.inline.hover.base}",
|
|
91
|
-
"type": "color",
|
|
92
80
|
"source": "$brand-inline-link-hover-decoration-color",
|
|
93
|
-
"modify": [{ "type": "alpha", "amount": 1 }]
|
|
81
|
+
"modify": [{ "type": "alpha", "amount": 1 }],
|
|
82
|
+
"$value": "{color.link.brand.inline.hover.base}"
|
|
94
83
|
}
|
|
95
84
|
}
|
|
96
85
|
}
|
|
@@ -98,10 +87,12 @@
|
|
|
98
87
|
}
|
|
99
88
|
},
|
|
100
89
|
"other": {
|
|
90
|
+
"$type": "percentage",
|
|
101
91
|
"link": {
|
|
102
92
|
"emphasized-hover": {
|
|
103
93
|
"darken-percentage": {
|
|
104
|
-
"
|
|
94
|
+
"source": "$emphasized-link-hover-darken-percentage",
|
|
95
|
+
"$value": "15%"
|
|
105
96
|
}
|
|
106
97
|
}
|
|
107
98
|
}
|
|
@@ -1,36 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
+
"$type": "color",
|
|
3
4
|
"list-group": {
|
|
4
|
-
"base": { "
|
|
5
|
+
"base": { "source": "$list-group-color", "$value": "inherit" },
|
|
5
6
|
"bg": {
|
|
6
|
-
"base": { "
|
|
7
|
-
"hover": { "
|
|
7
|
+
"base": { "source": "$list-group-bg", "$value": "{color.white}" },
|
|
8
|
+
"hover": { "source": "$list-group-hover-bg", "$value": "{color.gray.100}" }
|
|
8
9
|
},
|
|
9
10
|
"border": {
|
|
10
|
-
"value": "{color.black}",
|
|
11
|
-
"type": "color",
|
|
12
11
|
"source": "$list-group-border-color",
|
|
13
|
-
"modify": [{ "type": "alpha", "amount": 0.125 }]
|
|
12
|
+
"modify": [{ "type": "alpha", "amount": 0.125 }],
|
|
13
|
+
"$value": "{color.black}"
|
|
14
14
|
},
|
|
15
15
|
"active": {
|
|
16
|
-
"base": { "
|
|
17
|
-
"border": {
|
|
18
|
-
|
|
19
|
-
},
|
|
20
|
-
"bg": { "value": "{color.bg.active}", "type": "color", "source": "$list-group-active-bg" }
|
|
16
|
+
"base": { "source": "$list-group-active-color", "$value": "{color.active}" },
|
|
17
|
+
"border": { "source": "$list-group-active-border-color", "$value": "{color.list-group.active.bg}" },
|
|
18
|
+
"bg": { "source": "$list-group-active-bg", "$value": "{color.bg.active}" }
|
|
21
19
|
},
|
|
22
20
|
"disabled": {
|
|
23
|
-
"base": { "
|
|
24
|
-
"bg": { "
|
|
21
|
+
"base": { "source": "$list-group-disabled-color", "$value": "{color.gray.600}" },
|
|
22
|
+
"bg": { "source": "$list-group-disabled-bg", "$value": "{color.list-group.bg.base}" }
|
|
25
23
|
},
|
|
26
24
|
"action": {
|
|
27
|
-
"base": { "
|
|
28
|
-
"hover": {
|
|
29
|
-
"value": "{color.list-group.action.base}", "type": "color", "source": "$list-group-action-hover-color"
|
|
30
|
-
},
|
|
25
|
+
"base": { "source": "$list-group-action-color", "$value": "{color.gray.700}" },
|
|
26
|
+
"hover": { "source": "$list-group-action-hover-color", "$value": "{color.list-group.action.base}" },
|
|
31
27
|
"active": {
|
|
32
|
-
"base": { "
|
|
33
|
-
"bg": { "
|
|
28
|
+
"base": { "source": "$list-group-action-active-color", "$value": "{color.body.base}" },
|
|
29
|
+
"bg": { "source": "$list-group-action-active-bg", "$value": "{color.gray.200}" }
|
|
34
30
|
}
|
|
35
31
|
}
|
|
36
32
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"color": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"$type": "color",
|
|
4
|
+
"text-muted": { "source": "$text-muted", "$value": "{color.gray.500}" },
|
|
5
|
+
"mark-bg": { "source": "$mark-bg", "$value": "#FFF243" },
|
|
5
6
|
"blockquote": {
|
|
6
|
-
"small": {
|
|
7
|
-
"value": "{color.gray.500}", "type": "color", "source": "$blockquote-small-color"
|
|
8
|
-
}
|
|
7
|
+
"small": { "source": "$blockquote-small-color", "$value": "{color.gray.500}" }
|
|
9
8
|
},
|
|
10
|
-
"yiq-light": { "
|
|
9
|
+
"yiq-light": { "source": "$yiq-text-light", "$value": "{color.white}" }
|
|
11
10
|
}
|
|
12
11
|
}
|