@semanticus/semanticus-css 0.3.0

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.
Files changed (122) hide show
  1. package/LICENSE +21 -0
  2. package/NOTICE +53 -0
  3. package/README.md +151 -0
  4. package/dist/semanticus-semantics.css +2 -0
  5. package/dist/semanticus-utilities.css +7 -0
  6. package/dist/semanticus-variants.css +1 -0
  7. package/dist/semanticus.css +7 -0
  8. package/dist/semanticus.palette.amber.css +1 -0
  9. package/dist/semanticus.palette.blue.css +1 -0
  10. package/dist/semanticus.palette.cyan.css +1 -0
  11. package/dist/semanticus.palette.fuchsia.css +1 -0
  12. package/dist/semanticus.palette.green.css +1 -0
  13. package/dist/semanticus.palette.grey.css +1 -0
  14. package/dist/semanticus.palette.indigo.css +1 -0
  15. package/dist/semanticus.palette.jade.css +1 -0
  16. package/dist/semanticus.palette.lime.css +1 -0
  17. package/dist/semanticus.palette.orange.css +1 -0
  18. package/dist/semanticus.palette.pink.css +1 -0
  19. package/dist/semanticus.palette.pumpkin.css +1 -0
  20. package/dist/semanticus.palette.purple.css +1 -0
  21. package/dist/semanticus.palette.red.css +1 -0
  22. package/dist/semanticus.palette.sand.css +1 -0
  23. package/dist/semanticus.palette.slate.css +1 -0
  24. package/dist/semanticus.palette.violet.css +1 -0
  25. package/dist/semanticus.palette.yellow.css +1 -0
  26. package/dist/semanticus.palette.zinc.css +1 -0
  27. package/dist/semanticus.size.slim.css +1 -0
  28. package/package.json +102 -0
  29. package/src/_normalize.css +214 -0
  30. package/src/_variables.css +863 -0
  31. package/src/index.css +20 -0
  32. package/src/palettes/amber.css +56 -0
  33. package/src/palettes/blue.css +56 -0
  34. package/src/palettes/cyan.css +56 -0
  35. package/src/palettes/fuchsia.css +56 -0
  36. package/src/palettes/green.css +56 -0
  37. package/src/palettes/grey.css +56 -0
  38. package/src/palettes/indigo.css +56 -0
  39. package/src/palettes/jade.css +56 -0
  40. package/src/palettes/lime.css +56 -0
  41. package/src/palettes/orange.css +56 -0
  42. package/src/palettes/pink.css +56 -0
  43. package/src/palettes/pumpkin.css +56 -0
  44. package/src/palettes/purple.css +56 -0
  45. package/src/palettes/red.css +56 -0
  46. package/src/palettes/sand.css +56 -0
  47. package/src/palettes/slate.css +56 -0
  48. package/src/palettes/violet.css +56 -0
  49. package/src/palettes/yellow.css +56 -0
  50. package/src/palettes/zinc.css +56 -0
  51. package/src/semantics/_aria-busy.css +34 -0
  52. package/src/semantics/_article.css +6 -0
  53. package/src/semantics/_body.css +10 -0
  54. package/src/semantics/_button.css +106 -0
  55. package/src/semantics/_code.css +50 -0
  56. package/src/semantics/_details.css +292 -0
  57. package/src/semantics/_dialog.css +163 -0
  58. package/src/semantics/_document.css +18 -0
  59. package/src/semantics/_embedded.css +41 -0
  60. package/src/semantics/_figure.css +13 -0
  61. package/src/semantics/_hidden.css +7 -0
  62. package/src/semantics/_hr.css +10 -0
  63. package/src/semantics/_input.css +306 -0
  64. package/src/semantics/_links.css +33 -0
  65. package/src/semantics/_main.css +3 -0
  66. package/src/semantics/_nav.css +116 -0
  67. package/src/semantics/_progress.css +62 -0
  68. package/src/semantics/_role-group-search.css +129 -0
  69. package/src/semantics/_role-toolbar.css +17 -0
  70. package/src/semantics/_role-tooltip.css +138 -0
  71. package/src/semantics/_section.css +6 -0
  72. package/src/semantics/_table.css +28 -0
  73. package/src/semantics/_type-checkbox-radio.css +142 -0
  74. package/src/semantics/_type-color.css +22 -0
  75. package/src/semantics/_type-date.css +40 -0
  76. package/src/semantics/_type-file.css +26 -0
  77. package/src/semantics/_type-range.css +90 -0
  78. package/src/semantics/_type-search.css +34 -0
  79. package/src/semantics/_typography.css +137 -0
  80. package/src/semantics/index.css +14 -0
  81. package/src/semantics/modules.css +35 -0
  82. package/src/sizes/slim.css +12 -0
  83. package/src/utilities/_variables.css +244 -0
  84. package/src/utilities/borders/_border-radius.css +216 -0
  85. package/src/utilities/borders/_border-style.css +39 -0
  86. package/src/utilities/borders/_border-width.css +39 -0
  87. package/src/utilities/colors/_background-colors.css +209 -0
  88. package/src/utilities/colors/_border-colors.css +69 -0
  89. package/src/utilities/colors/_text-colors.css +371 -0
  90. package/src/utilities/display/_display.css +259 -0
  91. package/src/utilities/display/_overflow.css +47 -0
  92. package/src/utilities/display/_visibility.css +27 -0
  93. package/src/utilities/effects/_opacity.css +19 -0
  94. package/src/utilities/effects/_shadows.css +48 -0
  95. package/src/utilities/effects/_transforms.css +11 -0
  96. package/src/utilities/index.css +14 -0
  97. package/src/utilities/layout/_flexbox.css +846 -0
  98. package/src/utilities/layout/_grid.css +51 -0
  99. package/src/utilities/layout/_misc.css +77 -0
  100. package/src/utilities/media/_object-fit.css +139 -0
  101. package/src/utilities/modules.css +56 -0
  102. package/src/utilities/positioning/_floats.css +72 -0
  103. package/src/utilities/positioning/_inset.css +47 -0
  104. package/src/utilities/positioning/_position.css +108 -0
  105. package/src/utilities/positioning/_z-index.css +19 -0
  106. package/src/utilities/sizing/_height.css +31 -0
  107. package/src/utilities/sizing/_width.css +31 -0
  108. package/src/utilities/spacing/_gap.css +393 -0
  109. package/src/utilities/spacing/_margin.css +1030 -0
  110. package/src/utilities/spacing/_padding.css +885 -0
  111. package/src/utilities/typography/_font-family.css +7 -0
  112. package/src/utilities/typography/_font-sizes.css +38 -0
  113. package/src/utilities/typography/_font-weight.css +51 -0
  114. package/src/utilities/typography/_text-alignment.css +141 -0
  115. package/src/variants/_card.css +41 -0
  116. package/src/variants/_container.css +36 -0
  117. package/src/variants/_contrast.css +50 -0
  118. package/src/variants/_ghost.css +58 -0
  119. package/src/variants/_secondary.css +38 -0
  120. package/src/variants/_striped.css +10 -0
  121. package/src/variants/index.css +6 -0
  122. package/src/variants/modules.css +12 -0
@@ -0,0 +1,209 @@
1
+ .text-bg-primary {
2
+ --color-text: var(--color-primary-inverse) !important;
3
+
4
+ color: var(--color-primary-inverse) !important;
5
+ background-color: rgba(var(--primary-rgb), var(--bg-opacity, 1)) !important;
6
+ }
7
+
8
+ .text-bg-secondary {
9
+ --color-text: var(--color-secondary-inverse) !important;
10
+
11
+ color: var(--color-secondary-inverse) !important;
12
+ background-color: rgba(var(--secondary-rgb), var(--bg-opacity, 1)) !important;
13
+ }
14
+
15
+ .text-bg-success {
16
+ --color-text: var(--color-success-inverse) !important;
17
+
18
+ color: var(--color-success-inverse) !important;
19
+ background-color: rgba(var(--success-rgb), var(--bg-opacity, 1)) !important;
20
+ }
21
+
22
+ .text-bg-info {
23
+ --color-text: var(--color-info-inverse) !important;
24
+
25
+ color: var(--color-info-inverse) !important;
26
+ background-color: rgba(var(--info-rgb), var(--bg-opacity, 1)) !important;
27
+ }
28
+
29
+ .text-bg-warning {
30
+ --color-text: var(--color-warning-inverse) !important;
31
+
32
+ color: var(--color-warning-inverse) !important;
33
+ background-color: rgba(var(--warning-rgb), var(--bg-opacity, 1)) !important;
34
+ }
35
+
36
+ .text-bg-danger {
37
+ --color-text: var(--color-danger-inverse) !important;
38
+
39
+ color: var(--color-danger-inverse) !important;
40
+ background-color: rgba(var(--danger-rgb), var(--bg-opacity, 1)) !important;
41
+ }
42
+
43
+ .text-bg-contrast {
44
+ --color-text: var(--color-contrast-inverse) !important;
45
+
46
+ color: var(--color-contrast-inverse) !important;
47
+ background-color: rgba(var(--contrast-rgb), var(--bg-opacity, 1)) !important;
48
+ }
49
+
50
+ .text-bg-primary-subtle {
51
+ --color-text: var(--primary-text-emphasis) !important;
52
+
53
+ color: var(--primary-text-emphasis) !important;
54
+ background-color: var(--primary-bg-subtle) !important;
55
+ }
56
+
57
+ .text-bg-secondary-subtle {
58
+ --color-text: var(--secondary-text-emphasis) !important;
59
+
60
+ color: var(--secondary-text-emphasis) !important;
61
+ background-color: var(--secondary-bg-subtle) !important;
62
+ }
63
+
64
+ .text-bg-success-subtle {
65
+ --color-text: var(--success-text-emphasis) !important;
66
+
67
+ color: var(--success-text-emphasis) !important;
68
+ background-color: var(--success-bg-subtle) !important;
69
+ }
70
+
71
+ .text-bg-info-subtle {
72
+ --color-text: var(--info-text-emphasis) !important;
73
+
74
+ color: var(--info-text-emphasis) !important;
75
+ background-color: var(--info-bg-subtle) !important;
76
+ }
77
+
78
+ .text-bg-warning-subtle {
79
+ --color-text: var(--warning-text-emphasis) !important;
80
+
81
+ color: var(--warning-text-emphasis) !important;
82
+ background-color: var(--warning-bg-subtle) !important;
83
+ }
84
+
85
+ .text-bg-danger-subtle {
86
+ --color-text: var(--danger-text-emphasis) !important;
87
+
88
+ color: var(--danger-text-emphasis) !important;
89
+ background-color: var(--danger-bg-subtle) !important;
90
+ }
91
+
92
+ .text-bg-contrast-subtle {
93
+ --color-text: var(--contrast-text-emphasis) !important;
94
+
95
+ color: var(--contrast-text-emphasis) !important;
96
+ background-color: var(--contrast-bg-subtle) !important;
97
+ }
98
+
99
+ .bg-primary {
100
+ --bg-opacity: 1;
101
+
102
+ background-color: rgba(var(--primary-rgb), var(--bg-opacity)) !important;
103
+ }
104
+
105
+ .bg-secondary {
106
+ --bg-opacity: 1;
107
+
108
+ background-color: rgba(var(--secondary-rgb), var(--bg-opacity)) !important;
109
+ }
110
+
111
+ .bg-success {
112
+ --bg-opacity: 1;
113
+
114
+ background-color: rgba(var(--success-rgb), var(--bg-opacity)) !important;
115
+ }
116
+
117
+ .bg-info {
118
+ --bg-opacity: 1;
119
+
120
+ background-color: rgba(var(--info-rgb), var(--bg-opacity)) !important;
121
+ }
122
+
123
+ .bg-warning {
124
+ --bg-opacity: 1;
125
+
126
+ background-color: rgba(var(--warning-rgb), var(--bg-opacity)) !important;
127
+ }
128
+
129
+ .bg-danger {
130
+ --bg-opacity: 1;
131
+
132
+ background-color: rgba(var(--danger-rgb), var(--bg-opacity)) !important;
133
+ }
134
+
135
+ .bg-contrast {
136
+ --bg-opacity: 1;
137
+
138
+ background-color: rgba(var(--contrast-rgb), var(--bg-opacity)) !important;
139
+ }
140
+
141
+ .bg-body {
142
+ --bg-opacity: 1;
143
+
144
+ background-color: rgba(var(--body-bg-rgb), var(--bg-opacity)) !important;
145
+ }
146
+
147
+ .bg-transparent {
148
+ --bg-opacity: 1;
149
+
150
+ background-color: transparent !important;
151
+ }
152
+
153
+ .bg-body-secondary {
154
+ --bg-opacity: 1;
155
+
156
+ background-color: rgba(var(--secondary-bg-rgb), var(--bg-opacity)) !important;
157
+ }
158
+
159
+ .bg-opacity-10 {
160
+ --bg-opacity: 0.1;
161
+ }
162
+
163
+ .bg-opacity-25 {
164
+ --bg-opacity: 0.25;
165
+ }
166
+
167
+ .bg-opacity-50 {
168
+ --bg-opacity: 0.5;
169
+ }
170
+
171
+ .bg-opacity-75 {
172
+ --bg-opacity: 0.75;
173
+ }
174
+
175
+ .bg-opacity-100 {
176
+ --bg-opacity: 1;
177
+ }
178
+
179
+ .bg-primary-subtle {
180
+ background-color: var(--primary-bg-subtle) !important;
181
+ }
182
+
183
+ .bg-secondary-subtle {
184
+ background-color: var(--secondary-bg-subtle) !important;
185
+ }
186
+
187
+ .bg-success-subtle {
188
+ background-color: var(--success-bg-subtle) !important;
189
+ }
190
+
191
+ .bg-info-subtle {
192
+ background-color: var(--info-bg-subtle) !important;
193
+ }
194
+
195
+ .bg-warning-subtle {
196
+ background-color: var(--warning-bg-subtle) !important;
197
+ }
198
+
199
+ .bg-danger-subtle {
200
+ background-color: var(--danger-bg-subtle) !important;
201
+ }
202
+
203
+ .bg-contrast-subtle {
204
+ background-color: var(--contrast-bg-subtle) !important;
205
+ }
206
+
207
+ .bg-gradient {
208
+ background-image: var(--gradient) !important;
209
+ }
@@ -0,0 +1,69 @@
1
+ .border-primary {
2
+ --border-opacity: 1;
3
+
4
+ border-color: rgba(var(--primary-rgb), var(--border-opacity)) !important;
5
+ }
6
+
7
+ .border-secondary {
8
+ --border-opacity: 1;
9
+
10
+ border-color: rgba(var(--secondary-rgb), var(--border-opacity)) !important;
11
+ }
12
+
13
+ .border-success {
14
+ --border-opacity: 1;
15
+
16
+ border-color: rgba(var(--success-rgb), var(--border-opacity)) !important;
17
+ }
18
+
19
+ .border-info {
20
+ --border-opacity: 1;
21
+
22
+ border-color: rgba(var(--info-rgb), var(--border-opacity)) !important;
23
+ }
24
+
25
+ .border-warning {
26
+ --border-opacity: 1;
27
+
28
+ border-color: rgba(var(--warning-rgb), var(--border-opacity)) !important;
29
+ }
30
+
31
+ .border-danger {
32
+ --border-opacity: 1;
33
+
34
+ border-color: rgba(var(--danger-rgb), var(--border-opacity)) !important;
35
+ }
36
+
37
+ .border-contrast {
38
+ --border-opacity: 1;
39
+
40
+ border-color: rgba(var(--contrast-rgb), var(--border-opacity)) !important;
41
+ }
42
+
43
+ .border-primary-subtle {
44
+ border-color: var(--primary-border-subtle) !important;
45
+ }
46
+
47
+ .border-secondary-subtle {
48
+ border-color: var(--secondary-border-subtle) !important;
49
+ }
50
+
51
+ .border-success-subtle {
52
+ border-color: var(--success-border-subtle) !important;
53
+ }
54
+
55
+ .border-info-subtle {
56
+ border-color: var(--info-border-subtle) !important;
57
+ }
58
+
59
+ .border-warning-subtle {
60
+ border-color: var(--warning-border-subtle) !important;
61
+ }
62
+
63
+ .border-danger-subtle {
64
+ border-color: var(--danger-border-subtle) !important;
65
+ }
66
+
67
+ .border-contrast-subtle {
68
+ border-color: var(--contrast-border-subtle) !important;
69
+ }
@@ -0,0 +1,371 @@
1
+ .link-primary {
2
+ color: rgba(var(--primary-rgb), var(--link-opacity, 1)) !important;
3
+ -webkit-text-decoration-color: rgba(var(--primary-rgb), var(--link-underline-opacity, 1)) !important;
4
+ text-decoration-color: rgba(var(--primary-rgb), var(--link-underline-opacity, 1)) !important;
5
+ }
6
+ .link-primary:hover, .link-primary:focus {
7
+ color: rgba(var(--link-hover-color-rgb), var(--link-opacity, 1)) !important;
8
+ -webkit-text-decoration-color: rgba(var(--link-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
9
+ text-decoration-color: rgba(var(--link-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
10
+ }
11
+
12
+ .link-secondary {
13
+ color: rgba(var(--secondary-rgb), var(--link-opacity, 1)) !important;
14
+ -webkit-text-decoration-color: rgba(var(--secondary-rgb), var(--link-underline-opacity, 1)) !important;
15
+ text-decoration-color: rgba(var(--secondary-rgb), var(--link-underline-opacity, 1)) !important;
16
+ }
17
+ .link-secondary:hover, .link-secondary:focus {
18
+ color: rgba(var(--secondary-hover-color-rgb), var(--link-opacity, 1)) !important;
19
+ -webkit-text-decoration-color: rgba(var(--secondary-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
20
+ text-decoration-color: rgba(var(--secondary-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
21
+ }
22
+
23
+ .link-success {
24
+ color: rgba(var(--success-rgb), var(--link-opacity, 1)) !important;
25
+ -webkit-text-decoration-color: rgba(var(--success-rgb), var(--link-underline-opacity, 1)) !important;
26
+ text-decoration-color: rgba(var(--success-rgb), var(--link-underline-opacity, 1)) !important;
27
+ }
28
+ .link-success:hover, .link-success:focus {
29
+ color: rgba(var(--success-hover-color-rgb), var(--link-opacity, 1)) !important;
30
+ -webkit-text-decoration-color: rgba(var(--success-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
31
+ text-decoration-color: rgba(var(--success-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
32
+ }
33
+
34
+ .link-info {
35
+ color: rgba(var(--info-rgb), var(--link-opacity, 1)) !important;
36
+ -webkit-text-decoration-color: rgba(var(--info-rgb), var(--link-underline-opacity, 1)) !important;
37
+ text-decoration-color: rgba(var(--info-rgb), var(--link-underline-opacity, 1)) !important;
38
+ }
39
+ .link-info:hover, .link-info:focus {
40
+ color: rgba(var(--info-hover-color-rgb), var(--link-opacity, 1)) !important;
41
+ -webkit-text-decoration-color: rgba(var(--info-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
42
+ text-decoration-color: rgba(var(--info-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
43
+ }
44
+
45
+ .link-warning {
46
+ color: rgba(var(--warning-rgb), var(--link-opacity, 1)) !important;
47
+ -webkit-text-decoration-color: rgba(var(--warning-rgb), var(--link-underline-opacity, 1)) !important;
48
+ text-decoration-color: rgba(var(--warning-rgb), var(--link-underline-opacity, 1)) !important;
49
+ }
50
+ .link-warning:hover, .link-warning:focus {
51
+ color: rgba(var(--warning-hover-color-rgb), var(--link-opacity, 1)) !important;
52
+ -webkit-text-decoration-color: rgba(var(--warning-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
53
+ text-decoration-color: rgba(var(--warning-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
54
+ }
55
+
56
+ .link-danger {
57
+ color: rgba(var(--danger-rgb), var(--link-opacity, 1)) !important;
58
+ -webkit-text-decoration-color: rgba(var(--danger-rgb), var(--link-underline-opacity, 1)) !important;
59
+ text-decoration-color: rgba(var(--danger-rgb), var(--link-underline-opacity, 1)) !important;
60
+ }
61
+ .link-danger:hover, .link-danger:focus {
62
+ color: rgba(var(--danger-hover-color-rgb), var(--link-opacity, 1)) !important;
63
+ -webkit-text-decoration-color: rgba(var(--danger-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
64
+ text-decoration-color: rgba(var(--danger-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
65
+ }
66
+
67
+ .link-contrast {
68
+ color: rgba(var(--contrast-rgb), var(--link-opacity, 1)) !important;
69
+ -webkit-text-decoration-color: rgba(var(--contrast-rgb), var(--link-underline-opacity, 1)) !important;
70
+ text-decoration-color: rgba(var(--contrast-rgb), var(--link-underline-opacity, 1)) !important;
71
+ }
72
+ .link-contrast:hover, .link-contrast:focus {
73
+ color: rgba(var(--contrast-hover-color-rgb), var(--link-opacity, 1)) !important;
74
+ -webkit-text-decoration-color: rgba(var(--contrast-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
75
+ text-decoration-color: rgba(var(--contrast-hover-color-rgb), var(--link-underline-opacity, 1)) !important;
76
+ }
77
+
78
+ .link-body-emphasis {
79
+ color: rgba(var(--emphasis-color-rgb), var(--link-opacity, 1)) !important;
80
+ -webkit-text-decoration-color: rgba(var(--emphasis-color-rgb), var(--link-underline-opacity, 1)) !important;
81
+ text-decoration-color: rgba(var(--emphasis-color-rgb), var(--link-underline-opacity, 1)) !important;
82
+ }
83
+ .link-body-emphasis:hover, .link-body-emphasis:focus {
84
+ color: rgba(var(--emphasis-color-rgb), var(--link-opacity, 0.75)) !important;
85
+ -webkit-text-decoration-color: rgba(var(--emphasis-color-rgb), var(--link-underline-opacity, 0.75)) !important;
86
+ text-decoration-color: rgba(var(--emphasis-color-rgb), var(--link-underline-opacity, 0.75)) !important;
87
+ }
88
+
89
+ .text-primary {
90
+ --text-opacity: 1;
91
+
92
+ color: rgba(var(--primary-rgb), var(--text-opacity)) !important;
93
+ }
94
+
95
+ .text-secondary {
96
+ --text-opacity: 1;
97
+
98
+ color: rgba(var(--secondary-rgb), var(--text-opacity)) !important;
99
+ }
100
+
101
+ .text-success {
102
+ --text-opacity: 1;
103
+
104
+ color: rgba(var(--success-rgb), var(--text-opacity)) !important;
105
+ }
106
+
107
+ .text-info {
108
+ --text-opacity: 1;
109
+
110
+ color: rgba(var(--info-rgb), var(--text-opacity)) !important;
111
+ }
112
+
113
+ .text-warning {
114
+ --text-opacity: 1;
115
+
116
+ color: rgba(var(--warning-rgb), var(--text-opacity)) !important;
117
+ }
118
+
119
+ .text-danger {
120
+ --text-opacity: 1;
121
+
122
+ color: rgba(var(--danger-rgb), var(--text-opacity)) !important;
123
+ }
124
+
125
+ .text-contrast {
126
+ --text-opacity: 1;
127
+
128
+ color: rgba(var(--contrast-rgb), var(--text-opacity)) !important;
129
+ }
130
+
131
+ .text-body {
132
+ --text-opacity: 1;
133
+
134
+ color: rgba(var(--body-color-rgb), var(--text-opacity)) !important;
135
+ }
136
+
137
+ .text-muted {
138
+ --text-opacity: 1;
139
+
140
+ color: var(--secondary-color) !important;
141
+ }
142
+
143
+ .text-body-secondary {
144
+ --text-opacity: 1;
145
+
146
+ color: var(--secondary-color) !important;
147
+ }
148
+
149
+ .text-body-emphasis {
150
+ --text-opacity: 1;
151
+
152
+ color: var(--emphasis-color) !important;
153
+ }
154
+
155
+ .text-reset {
156
+ --text-opacity: 1;
157
+
158
+ color: inherit !important;
159
+ }
160
+
161
+ .text-opacity-25 {
162
+ --text-opacity: 0.25;
163
+ }
164
+
165
+ .text-opacity-50 {
166
+ --text-opacity: 0.5;
167
+ }
168
+
169
+ .text-opacity-75 {
170
+ --text-opacity: 0.75;
171
+ }
172
+
173
+ .text-opacity-100 {
174
+ --text-opacity: 1;
175
+ }
176
+
177
+ .text-primary-emphasis {
178
+ color: var(--primary-text-emphasis) !important;
179
+ }
180
+
181
+ .text-secondary-emphasis {
182
+ color: var(--secondary-text-emphasis) !important;
183
+ }
184
+
185
+ .text-success-emphasis {
186
+ color: var(--success-text-emphasis) !important;
187
+ }
188
+
189
+ .text-info-emphasis {
190
+ color: var(--info-text-emphasis) !important;
191
+ }
192
+
193
+ .text-warning-emphasis {
194
+ color: var(--warning-text-emphasis) !important;
195
+ }
196
+
197
+ .text-danger-emphasis {
198
+ color: var(--danger-text-emphasis) !important;
199
+ }
200
+
201
+ .text-contrast-emphasis {
202
+ color: var(--contrast-text-emphasis) !important;
203
+ }
204
+
205
+ .link-opacity-10 {
206
+ --link-opacity: 0.1;
207
+ }
208
+
209
+ .link-opacity-10-hover:hover {
210
+ --link-opacity: 0.1;
211
+ }
212
+
213
+ .link-opacity-25 {
214
+ --link-opacity: 0.25;
215
+ }
216
+
217
+ .link-opacity-25-hover:hover {
218
+ --link-opacity: 0.25;
219
+ }
220
+
221
+ .link-opacity-50 {
222
+ --link-opacity: 0.5;
223
+ }
224
+
225
+ .link-opacity-50-hover:hover {
226
+ --link-opacity: 0.5;
227
+ }
228
+
229
+ .link-opacity-75 {
230
+ --link-opacity: 0.75;
231
+ }
232
+
233
+ .link-opacity-75-hover:hover {
234
+ --link-opacity: 0.75;
235
+ }
236
+
237
+ .link-opacity-100 {
238
+ --link-opacity: 1;
239
+ }
240
+
241
+ .link-opacity-100-hover:hover {
242
+ --link-opacity: 1;
243
+ }
244
+
245
+ .link-offset-1 {
246
+ text-underline-offset: 0.125em !important;
247
+ }
248
+
249
+ .link-offset-1-hover:hover {
250
+ text-underline-offset: 0.125em !important;
251
+ }
252
+
253
+ .link-offset-2 {
254
+ text-underline-offset: 0.25em !important;
255
+ }
256
+
257
+ .link-offset-2-hover:hover {
258
+ text-underline-offset: 0.25em !important;
259
+ }
260
+
261
+ .link-offset-3 {
262
+ text-underline-offset: 0.375em !important;
263
+ }
264
+
265
+ .link-offset-3-hover:hover {
266
+ text-underline-offset: 0.375em !important;
267
+ }
268
+
269
+ .link-underline-primary {
270
+ --link-underline-opacity: 1;
271
+
272
+ -webkit-text-decoration-color: rgba(var(--primary-rgb), var(--link-underline-opacity)) !important;
273
+ text-decoration-color: rgba(var(--primary-rgb), var(--link-underline-opacity)) !important;
274
+ }
275
+
276
+ .link-underline-secondary {
277
+ --link-underline-opacity: 1;
278
+
279
+ -webkit-text-decoration-color: rgba(var(--secondary-rgb), var(--link-underline-opacity)) !important;
280
+ text-decoration-color: rgba(var(--secondary-rgb), var(--link-underline-opacity)) !important;
281
+ }
282
+
283
+ .link-underline-success {
284
+ --link-underline-opacity: 1;
285
+
286
+ -webkit-text-decoration-color: rgba(var(--success-rgb), var(--link-underline-opacity)) !important;
287
+ text-decoration-color: rgba(var(--success-rgb), var(--link-underline-opacity)) !important;
288
+ }
289
+
290
+ .link-underline-info {
291
+ --link-underline-opacity: 1;
292
+
293
+ -webkit-text-decoration-color: rgba(var(--info-rgb), var(--link-underline-opacity)) !important;
294
+ text-decoration-color: rgba(var(--info-rgb), var(--link-underline-opacity)) !important;
295
+ }
296
+
297
+ .link-underline-warning {
298
+ --link-underline-opacity: 1;
299
+
300
+ -webkit-text-decoration-color: rgba(var(--warning-rgb), var(--link-underline-opacity)) !important;
301
+ text-decoration-color: rgba(var(--warning-rgb), var(--link-underline-opacity)) !important;
302
+ }
303
+
304
+ .link-underline-danger {
305
+ --link-underline-opacity: 1;
306
+
307
+ -webkit-text-decoration-color: rgba(var(--danger-rgb), var(--link-underline-opacity)) !important;
308
+ text-decoration-color: rgba(var(--danger-rgb), var(--link-underline-opacity)) !important;
309
+ }
310
+
311
+ .link-underline-contrast {
312
+ --link-underline-opacity: 1;
313
+
314
+ -webkit-text-decoration-color: rgba(var(--contrast-rgb), var(--link-underline-opacity)) !important;
315
+ text-decoration-color: rgba(var(--contrast-rgb), var(--link-underline-opacity)) !important;
316
+ }
317
+
318
+ .link-underline {
319
+ --link-underline-opacity: 1;
320
+
321
+ -webkit-text-decoration-color: rgba(var(--link-color-rgb), var(--link-underline-opacity, 1)) !important;
322
+ text-decoration-color: rgba(var(--link-color-rgb), var(--link-underline-opacity, 1)) !important;
323
+ }
324
+
325
+ .link-underline-opacity-0 {
326
+ --link-underline-opacity: 0;
327
+ }
328
+
329
+ .link-underline-opacity-0-hover:hover {
330
+ --link-underline-opacity: 0;
331
+ }
332
+
333
+ .link-underline-opacity-10 {
334
+ --link-underline-opacity: 0.1;
335
+ }
336
+
337
+ .link-underline-opacity-10-hover:hover {
338
+ --link-underline-opacity: 0.1;
339
+ }
340
+
341
+ .link-underline-opacity-25 {
342
+ --link-underline-opacity: 0.25;
343
+ }
344
+
345
+ .link-underline-opacity-25-hover:hover {
346
+ --link-underline-opacity: 0.25;
347
+ }
348
+
349
+ .link-underline-opacity-50 {
350
+ --link-underline-opacity: 0.5;
351
+ }
352
+
353
+ .link-underline-opacity-50-hover:hover {
354
+ --link-underline-opacity: 0.5;
355
+ }
356
+
357
+ .link-underline-opacity-75 {
358
+ --link-underline-opacity: 0.75;
359
+ }
360
+
361
+ .link-underline-opacity-75-hover:hover {
362
+ --link-underline-opacity: 0.75;
363
+ }
364
+
365
+ .link-underline-opacity-100 {
366
+ --link-underline-opacity: 1;
367
+ }
368
+
369
+ .link-underline-opacity-100-hover:hover {
370
+ --link-underline-opacity: 1;
371
+ }