@cirthcss/cirth 0.8.4 → 0.9.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.
- package/README.md +24 -17
- package/dist/cirth.classless.css +48 -30
- package/dist/cirth.classless.min.css +1 -1
- package/dist/cirth.classless.scoped.css +48 -30
- package/dist/cirth.classless.scoped.min.css +1 -1
- package/dist/cirth.css +49 -31
- package/dist/cirth.min.css +1 -1
- package/dist/cirth.scoped.css +49 -31
- package/dist/cirth.scoped.min.css +1 -1
- package/dist/presets/cobalt.css +6 -3
- package/dist/presets/cobalt.min.css +1 -1
- package/dist/presets/coral.css +4 -1
- package/dist/presets/coral.min.css +1 -1
- package/package.json +6 -3
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
margin-bottom: calc(var(--cirth-typography-spacing-vertical) * .25);
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
.cirth :
|
|
139
|
+
.cirth :is(dl, ol, ul) :is(dl, ol, ul) {
|
|
140
140
|
margin: 0;
|
|
141
141
|
margin-top: calc(var(--cirth-typography-spacing-vertical) * .25);
|
|
142
142
|
}
|
|
@@ -209,6 +209,10 @@
|
|
|
209
209
|
outline: var(--cirth-outline-width) solid transparent;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
+
.cirth :where(a:not([role="button"])):visited:not([aria-current]:not([aria-current="false"]), :hover, :active, :focus, nav a) {
|
|
213
|
+
color: var(--cirth-link-visited-color);
|
|
214
|
+
}
|
|
215
|
+
|
|
212
216
|
.cirth a[role="button"] {
|
|
213
217
|
display: inline-block;
|
|
214
218
|
}
|
|
@@ -228,6 +232,7 @@
|
|
|
228
232
|
--cirth-border-color: var(--cirth-primary-border);
|
|
229
233
|
--cirth-color: var(--cirth-primary-inverse);
|
|
230
234
|
--cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 #0000);
|
|
235
|
+
max-width: 100%;
|
|
231
236
|
padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
|
|
232
237
|
border: var(--cirth-border-width) solid var(--cirth-border-color);
|
|
233
238
|
border-radius: var(--cirth-border-radius);
|
|
@@ -251,6 +256,7 @@
|
|
|
251
256
|
--cirth-border-color: var(--cirth-primary-border);
|
|
252
257
|
--cirth-color: var(--cirth-primary-inverse);
|
|
253
258
|
--cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 #0000);
|
|
259
|
+
max-width: 100%;
|
|
254
260
|
padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
|
|
255
261
|
border: var(--cirth-border-width) solid var(--cirth-border-color);
|
|
256
262
|
border-radius: var(--cirth-border-radius);
|
|
@@ -596,52 +602,52 @@
|
|
|
596
602
|
opacity: 1;
|
|
597
603
|
}
|
|
598
604
|
|
|
599
|
-
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid], :user-invalid:not([aria-invalid]
|
|
605
|
+
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) {
|
|
600
606
|
padding-inline: var(--cirth-form-element-spacing-horizontal) calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
|
|
601
607
|
background-position: center right var(--cirth-space-3);
|
|
602
608
|
background-size: var(--cirth-size-4) auto;
|
|
603
609
|
background-repeat: no-repeat;
|
|
604
610
|
}
|
|
605
611
|
|
|
606
|
-
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"])
|
|
612
|
+
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"])[aria-invalid="false"]:not(select) {
|
|
607
613
|
background-image: var(--cirth-icon-valid);
|
|
608
614
|
}
|
|
609
615
|
|
|
610
|
-
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):not(select) {
|
|
616
|
+
.cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]):is([aria-invalid="true"], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)):not(select) {
|
|
611
617
|
background-image: var(--cirth-icon-invalid);
|
|
612
618
|
}
|
|
613
619
|
|
|
614
|
-
.cirth :where(input, select, textarea)
|
|
620
|
+
.cirth :where(input, select, textarea)[aria-invalid="false"] {
|
|
615
621
|
--cirth-border-color: var(--cirth-form-element-valid-border-color);
|
|
616
622
|
}
|
|
617
623
|
|
|
618
|
-
.cirth :where(input, select, textarea)
|
|
624
|
+
.cirth :where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus) {
|
|
619
625
|
--cirth-border-color: var(--cirth-form-element-valid-active-border-color);
|
|
620
626
|
}
|
|
621
627
|
|
|
622
|
-
.cirth :where(input, select, textarea)
|
|
628
|
+
.cirth :where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
623
629
|
--cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
|
|
624
630
|
var(--cirth-form-element-valid-focus-color);
|
|
625
631
|
}
|
|
626
632
|
|
|
627
|
-
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])) {
|
|
633
|
+
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) {
|
|
628
634
|
--cirth-border-color: var(--cirth-form-element-invalid-border-color);
|
|
629
635
|
}
|
|
630
636
|
|
|
631
|
-
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):is(:active, :focus) {
|
|
637
|
+
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)):is(:active, :focus) {
|
|
632
638
|
--cirth-border-color: var(--cirth-form-element-invalid-active-border-color);
|
|
633
639
|
}
|
|
634
640
|
|
|
635
|
-
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid])):is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
641
|
+
.cirth :where(input, select, textarea):is([aria-invalid="true"], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)):is(:active, :focus):not([type="checkbox"], [type="radio"]) {
|
|
636
642
|
--cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
|
|
637
643
|
var(--cirth-form-element-invalid-focus-color);
|
|
638
644
|
}
|
|
639
645
|
|
|
640
|
-
[dir="rtl"] .cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"]):is([aria-invalid], :user-invalid:not([aria-invalid]
|
|
646
|
+
[dir="rtl"] .cirth :where(input, select, textarea):not([type="checkbox"], [type="radio"]):is([aria-invalid], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) {
|
|
641
647
|
background-position: center left var(--cirth-space-3);
|
|
642
648
|
}
|
|
643
649
|
|
|
644
|
-
[dir="rtl"] .cirth textarea:is([aria-invalid], :user-invalid:not([aria-invalid]
|
|
650
|
+
[dir="rtl"] .cirth textarea:is([aria-invalid], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) {
|
|
645
651
|
background-position: top left var(--cirth-space-3);
|
|
646
652
|
}
|
|
647
653
|
|
|
@@ -676,7 +682,7 @@
|
|
|
676
682
|
display: block;
|
|
677
683
|
}
|
|
678
684
|
|
|
679
|
-
.cirth textarea:is([aria-invalid], :user-invalid:not([aria-invalid]
|
|
685
|
+
.cirth textarea:is([aria-invalid], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) {
|
|
680
686
|
--cirth-icon-height: calc(var(--cirth-size-4) * var(--cirth-line-height) +
|
|
681
687
|
var(--cirth-form-element-spacing-vertical) * 2 +
|
|
682
688
|
var(--cirth-border-width) * 2);
|
|
@@ -692,11 +698,11 @@
|
|
|
692
698
|
display: block;
|
|
693
699
|
}
|
|
694
700
|
|
|
695
|
-
.cirth :where(input, select, textarea, fieldset)
|
|
701
|
+
.cirth :where(input, select, textarea, fieldset)[aria-invalid="false"] + small {
|
|
696
702
|
color: var(--cirth-ins-color);
|
|
697
703
|
}
|
|
698
704
|
|
|
699
|
-
.cirth :where(input, select, textarea, fieldset):is([aria-invalid="true"], :user-invalid:not([aria-invalid])) + small {
|
|
705
|
+
.cirth :where(input, select, textarea, fieldset):is([aria-invalid="true"], :user-invalid:not([aria-invalid], [type="range"]):not(select:focus)) + small {
|
|
700
706
|
color: var(--cirth-del-color);
|
|
701
707
|
}
|
|
702
708
|
|
|
@@ -848,6 +854,7 @@
|
|
|
848
854
|
.cirth input:not([type="checkbox"], [type="radio"], [type="range"], [type="file"]):is([type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"]) {
|
|
849
855
|
--cirth-icon-position: var(--cirth-space-3);
|
|
850
856
|
--cirth-icon-width: var(--cirth-size-4);
|
|
857
|
+
min-width: 0;
|
|
851
858
|
background-image: var(--cirth-icon-date);
|
|
852
859
|
background-position: center right var(--cirth-icon-position);
|
|
853
860
|
background-size: var(--cirth-icon-width) auto;
|
|
@@ -1183,28 +1190,28 @@
|
|
|
1183
1190
|
margin-bottom: 0;
|
|
1184
1191
|
}
|
|
1185
1192
|
|
|
1186
|
-
.cirth [role="search"] >
|
|
1193
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]), .cirth [role="search"] input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]), .cirth [role="search"] select:not([hidden]), .cirth [role="group"]:not(fieldset) > :not([hidden], input[type="hidden"]), .cirth [role="group"]:not(fieldset) input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]), .cirth [role="group"]:not(fieldset) select:not([hidden]) {
|
|
1187
1194
|
flex: auto;
|
|
1188
1195
|
margin-bottom: 0;
|
|
1189
1196
|
position: relative;
|
|
1190
1197
|
}
|
|
1191
1198
|
|
|
1192
|
-
.cirth [role="search"] > :is(input, select, textarea), .cirth [role="search"] input:not([type="checkbox"], [type="radio"]):is(input, select, textarea), .cirth [role="search"] select:is(input, select, textarea), .cirth [role="group"]:not(fieldset) > :is(input, select, textarea), .cirth [role="group"]:not(fieldset) input:not([type="checkbox"], [type="radio"]):is(input, select, textarea), .cirth [role="group"]:not(fieldset) select:is(input, select, textarea) {
|
|
1199
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):is(input, select, textarea), .cirth [role="search"] input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):is(input, select, textarea), .cirth [role="search"] select:not([hidden]):is(input, select, textarea), .cirth [role="group"]:not(fieldset) > :not([hidden], input[type="hidden"]):is(input, select, textarea), .cirth [role="group"]:not(fieldset) input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):is(input, select, textarea), .cirth [role="group"]:not(fieldset) select:not([hidden]):is(input, select, textarea) {
|
|
1193
1200
|
flex: 99;
|
|
1194
1201
|
}
|
|
1195
1202
|
|
|
1196
|
-
.cirth [role="search"] > :not(:
|
|
1203
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] select:not([hidden]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) > :not([hidden], input[type="hidden"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) select:not([hidden]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))) {
|
|
1197
1204
|
border-start-start-radius: 0;
|
|
1198
1205
|
border-end-start-radius: 0;
|
|
1199
1206
|
margin-inline-start: 0;
|
|
1200
1207
|
}
|
|
1201
1208
|
|
|
1202
|
-
.cirth [role="search"] > :not(:last-child), .cirth [role="search"] input:not([type="checkbox"], [type="radio"]):not(:last-child), .cirth [role="search"] select:not(:last-child), .cirth [role="group"]:not(fieldset) > :not(:last-child), .cirth [role="group"]:not(fieldset) input:not([type="checkbox"], [type="radio"]):not(:last-child), .cirth [role="group"]:not(fieldset) select:not(:last-child) {
|
|
1209
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] select:not([hidden]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) > :not([hidden], input[type="hidden"]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) select:not([hidden]):not(:nth-last-child(1 of :not([hidden], input[type="hidden"]))) {
|
|
1203
1210
|
border-start-end-radius: 0;
|
|
1204
1211
|
border-end-end-radius: 0;
|
|
1205
1212
|
}
|
|
1206
1213
|
|
|
1207
|
-
.cirth [role="search"] > :focus, .cirth [role="search"] input:not([type="checkbox"], [type="radio"]):focus, .cirth [role="search"] select:focus, .cirth [role="group"]:not(fieldset) > :focus, .cirth [role="group"]:not(fieldset) input:not([type="checkbox"], [type="radio"]):focus, .cirth [role="group"]:not(fieldset) select:focus {
|
|
1214
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):focus, .cirth [role="search"] input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):focus, .cirth [role="search"] select:not([hidden]):focus, .cirth [role="group"]:not(fieldset) > :not([hidden], input[type="hidden"]):focus, .cirth [role="group"]:not(fieldset) input:not([hidden], [type="checkbox"], [type="hidden"], [type="radio"]):focus, .cirth [role="group"]:not(fieldset) select:not([hidden]):focus {
|
|
1208
1215
|
z-index: 2;
|
|
1209
1216
|
}
|
|
1210
1217
|
|
|
@@ -1218,7 +1225,7 @@
|
|
|
1218
1225
|
border-end-end-radius: var(--cirth-border-radius);
|
|
1219
1226
|
}
|
|
1220
1227
|
|
|
1221
|
-
.cirth [role="search"] button:not(:
|
|
1228
|
+
.cirth [role="search"] button:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] [type="submit"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] [type="reset"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] [type="button"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] [role="button"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] input:not([type="checkbox"], [type="radio"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="search"] select:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) button:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) [type="submit"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) [type="reset"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) [type="button"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) [role="button"]:not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) input:not([type="checkbox"], [type="radio"]):not(:nth-child(1 of :not([hidden], input[type="hidden"]))), .cirth [role="group"]:not(fieldset) select:not(:nth-child(1 of :not([hidden], input[type="hidden"]))) {
|
|
1222
1229
|
margin-inline-start: calc(var(--cirth-border-width) * -1);
|
|
1223
1230
|
}
|
|
1224
1231
|
|
|
@@ -1320,12 +1327,12 @@
|
|
|
1320
1327
|
}
|
|
1321
1328
|
}
|
|
1322
1329
|
|
|
1323
|
-
.cirth [role="search"] > :
|
|
1330
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):nth-child(1 of :not([hidden], input[type="hidden"])) {
|
|
1324
1331
|
border-start-start-radius: var(--cirth-radius-pill);
|
|
1325
1332
|
border-end-start-radius: var(--cirth-radius-pill);
|
|
1326
1333
|
}
|
|
1327
1334
|
|
|
1328
|
-
.cirth [role="search"] > :last-child {
|
|
1335
|
+
.cirth [role="search"] > :not([hidden], input[type="hidden"]):nth-last-child(1 of :not([hidden], input[type="hidden"])) {
|
|
1329
1336
|
border-start-end-radius: var(--cirth-radius-pill);
|
|
1330
1337
|
border-end-end-radius: var(--cirth-radius-pill);
|
|
1331
1338
|
}
|
|
@@ -1368,6 +1375,10 @@
|
|
|
1368
1375
|
text-align: center;
|
|
1369
1376
|
}
|
|
1370
1377
|
|
|
1378
|
+
.cirth :is(button, [type="submit"], [type="reset"], [type="button"], [role="button"])[aria-busy="true"] {
|
|
1379
|
+
white-space: normal;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1371
1382
|
.cirth input:is([type="submit"], [type="button"], [type="reset"])[aria-busy="true"] {
|
|
1372
1383
|
background-image: var(--cirth-icon-loading);
|
|
1373
1384
|
background-position: center left var(--cirth-form-element-spacing-horizontal);
|
|
@@ -2055,6 +2066,10 @@
|
|
|
2055
2066
|
--cirth-border-radius: var(--cirth-radius-pill);
|
|
2056
2067
|
}
|
|
2057
2068
|
|
|
2069
|
+
.cirth [role="group"]:not(fieldset) [type="search"] {
|
|
2070
|
+
--cirth-border-radius: inherit;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2058
2073
|
.cirth button, .cirth [type="submit"], .cirth [type="reset"], .cirth [type="button"], .cirth [role="button"] {
|
|
2059
2074
|
--cirth-font-weight: var(--cirth-font-weight-semibold);
|
|
2060
2075
|
--cirth-line-height: var(--cirth-line-height-relaxed);
|
|
@@ -2093,7 +2108,7 @@
|
|
|
2093
2108
|
--lightningcss-light: initial;
|
|
2094
2109
|
--lightningcss-dark: ;
|
|
2095
2110
|
color-scheme: light;
|
|
2096
|
-
--cirth-background-color: oklch(97.4% .
|
|
2111
|
+
--cirth-background-color: oklch(97.4% .004 69.35);
|
|
2097
2112
|
--cirth-color: oklch(35.3% .021 264);
|
|
2098
2113
|
--cirth-text-selection-color: oklch(65.7% .121 69.35 / .25);
|
|
2099
2114
|
--cirth-muted-color: oklch(52.7% .032 264);
|
|
@@ -2128,13 +2143,14 @@
|
|
|
2128
2143
|
--cirth-contrast-hover-underline: var(--cirth-secondary-hover);
|
|
2129
2144
|
--cirth-contrast-focus: oklch(48.3% .03 264 / .7);
|
|
2130
2145
|
--cirth-contrast-inverse: oklch(100% 0 0);
|
|
2146
|
+
--cirth-link-visited-color: oklch(48.3% .03 264);
|
|
2131
2147
|
--cirth-box-shadow: .0145rem .029rem .174rem oklch(65.7% .03 264 / .01698), .0335rem .067rem .402rem oklch(65.7% .03 264 / .024), .0625rem .125rem .75rem oklch(65.7% .03 264 / .03), .1125rem .225rem 1.35rem oklch(65.7% .03 264 / .036), .2085rem .417rem 2.502rem oklch(65.7% .03 264 / .04302), .5rem 1rem 6rem oklch(65.7% .03 264 / .06), 0 0 0 .0625rem oklch(65.7% .03 264 / .015);
|
|
2132
|
-
--cirth-h1-color: oklch(
|
|
2133
|
-
--cirth-h2-color: oklch(
|
|
2134
|
-
--cirth-h3-color: oklch(
|
|
2135
|
-
--cirth-h4-color: oklch(
|
|
2136
|
-
--cirth-h5-color: oklch(
|
|
2137
|
-
--cirth-h6-color: oklch(
|
|
2148
|
+
--cirth-h1-color: oklch(22.3% .006 264);
|
|
2149
|
+
--cirth-h2-color: oklch(26.7% .011 264);
|
|
2150
|
+
--cirth-h3-color: oklch(31% .016 264);
|
|
2151
|
+
--cirth-h4-color: oklch(35.3% .021 264);
|
|
2152
|
+
--cirth-h5-color: oklch(39.7% .025 264);
|
|
2153
|
+
--cirth-h6-color: oklch(44% .028 264);
|
|
2138
2154
|
--cirth-mark-background-color: oklch(93% .05 78);
|
|
2139
2155
|
--cirth-mark-color: oklch(18% 0 264);
|
|
2140
2156
|
--cirth-ins-color: oklch(35.3% .067 160.59);
|
|
@@ -2236,6 +2252,7 @@
|
|
|
2236
2252
|
--cirth-contrast-hover-underline: var(--cirth-contrast-hover);
|
|
2237
2253
|
--cirth-contrast-focus: oklch(87.3% .011 264 / .5);
|
|
2238
2254
|
--cirth-contrast-inverse: oklch(0% 0 0);
|
|
2255
|
+
--cirth-link-visited-color: oklch(65.7% .03 264);
|
|
2239
2256
|
--cirth-box-shadow: .0145rem .029rem .174rem oklch(9% 0 312 / .01698), .0335rem .067rem .402rem oklch(9% 0 312 / .024), .0625rem .125rem .75rem oklch(9% 0 312 / .03), .1125rem .225rem 1.35rem oklch(9% 0 312 / .036), .2085rem .417rem 2.502rem oklch(9% 0 312 / .04302), .5rem 1rem 6rem oklch(9% 0 312 / .06), 0 0 0 .0625rem oklch(9% 0 312 / .015);
|
|
2240
2257
|
--cirth-h1-color: oklch(96% 0 264);
|
|
2241
2258
|
--cirth-h2-color: oklch(91.7% .006 264);
|
|
@@ -2344,6 +2361,7 @@
|
|
|
2344
2361
|
--cirth-contrast-hover-underline: var(--cirth-contrast-hover);
|
|
2345
2362
|
--cirth-contrast-focus: oklch(87.3% .011 264 / .5);
|
|
2346
2363
|
--cirth-contrast-inverse: oklch(0% 0 0);
|
|
2364
|
+
--cirth-link-visited-color: oklch(65.7% .03 264);
|
|
2347
2365
|
--cirth-box-shadow: .0145rem .029rem .174rem oklch(9% 0 312 / .01698), .0335rem .067rem .402rem oklch(9% 0 312 / .024), .0625rem .125rem .75rem oklch(9% 0 312 / .03), .1125rem .225rem 1.35rem oklch(9% 0 312 / .036), .2085rem .417rem 2.502rem oklch(9% 0 312 / .04302), .5rem 1rem 6rem oklch(9% 0 312 / .06), 0 0 0 .0625rem oklch(9% 0 312 / .015);
|
|
2348
2366
|
--cirth-h1-color: oklch(96% 0 264);
|
|
2349
2367
|
--cirth-h2-color: oklch(91.7% .006 264);
|