@adnap/krysalicss 0.0.1 → 0.1.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 +23 -5
- package/dist/element/badge.css +30 -0
- package/dist/element/badge.min.css +1 -1
- package/dist/element/box.css +193 -0
- package/dist/element/box.min.css +1 -0
- package/dist/element/button.css +4 -0
- package/dist/element/button.min.css +1 -1
- package/dist/element/divider.css +155 -0
- package/dist/element/divider.min.css +1 -0
- package/dist/element/image.css +434 -0
- package/dist/element/image.min.css +1 -0
- package/dist/element/range.css +2 -2
- package/dist/element/spinner.css +190 -0
- package/dist/element/spinner.min.css +1 -0
- package/dist/helper/border.css +141 -0
- package/dist/helper/border.min.css +1 -0
- package/dist/helper/color.css +203 -0
- package/dist/helper/color.min.css +1 -0
- package/dist/helper/flex.css +277 -0
- package/dist/helper/flex.min.css +1 -0
- package/dist/helper/font-size.css +137 -0
- package/dist/helper/font-size.min.css +1 -0
- package/dist/helper/interactions.css +142 -0
- package/dist/helper/interactions.min.css +1 -0
- package/dist/helper/line-height.css +129 -0
- package/dist/helper/line-height.min.css +1 -0
- package/dist/helper/object-fit.css +133 -0
- package/dist/helper/object-fit.min.css +1 -0
- package/dist/helper/overflow.css +165 -0
- package/dist/helper/overflow.min.css +1 -0
- package/dist/helper/position.css +157 -0
- package/dist/helper/position.min.css +1 -0
- package/dist/helper/ratio.css +142 -0
- package/dist/helper/ratio.min.css +1 -0
- package/dist/helper/shadow.css +129 -0
- package/dist/helper/shadow.min.css +1 -0
- package/dist/helper/sizing.css +177 -0
- package/dist/helper/sizing.min.css +1 -0
- package/dist/helper/spacing.css +563 -0
- package/dist/helper/spacing.min.css +1 -0
- package/dist/helper/stack.css +127 -0
- package/dist/helper/stack.min.css +1 -0
- package/dist/helper/text.css +243 -0
- package/dist/helper/text.min.css +1 -0
- package/dist/helper/tooltip.css +174 -0
- package/dist/helper/tooltip.min.css +1 -0
- package/dist/helper/visibility.css +334 -0
- package/dist/helper/visibility.min.css +1 -0
- package/dist/krysalicss.css +3491 -414
- package/dist/krysalicss.css.map +1 -1
- package/dist/krysalicss.min.css +1 -1
- package/dist/layout/footer.css +155 -0
- package/dist/layout/footer.min.css +1 -0
- package/dist/layout/hero.css +177 -0
- package/dist/layout/hero.min.css +1 -0
- package/dist/module/alert.css +30 -0
- package/dist/module/alert.min.css +1 -1
- package/dist/module/breadcrumb.css +163 -0
- package/dist/module/breadcrumb.min.css +1 -0
- package/dist/module/buttons.css +158 -0
- package/dist/module/buttons.min.css +1 -0
- package/dist/module/card.css +89 -0
- package/dist/module/card.min.css +1 -1
- package/dist/module/dropdown.css +253 -0
- package/dist/module/dropdown.min.css +1 -0
- package/dist/module/navbar.css +1 -1
- package/dist/module/navbar.min.css +1 -1
- package/dist/module/pagination.css +301 -0
- package/dist/module/pagination.min.css +1 -0
- package/dist/module/popover.css +272 -0
- package/dist/module/popover.min.css +1 -0
- package/dist/module/section.css +138 -0
- package/dist/module/section.min.css +1 -0
- package/dist/module/toast.css +307 -0
- package/dist/module/toast.min.css +1 -0
- package/dist/scss-api.json +4672 -0
- package/dist/typography/blockquote.css +128 -0
- package/dist/typography/blockquote.min.css +1 -0
- package/dist/typography/figure.css +132 -0
- package/dist/typography/figure.min.css +1 -0
- package/dist/typography/lead.css +119 -0
- package/dist/typography/lead.min.css +1 -0
- package/dist/typography/list.css +125 -0
- package/dist/typography/list.min.css +1 -0
- package/package.json +8 -2
- package/src/base/global/_plugin.scss +2 -0
- package/src/base/reset/_plugin.scss +2 -0
- package/src/base/reset/_variables.scss +2 -0
- package/src/element/_index.scss +4 -0
- package/src/element/badge/_plugin.scss +6 -8
- package/src/element/badge/_variables.scss +4 -6
- package/src/element/box/_index.scss +2 -0
- package/src/element/box/_plugin.scss +31 -0
- package/src/element/box/_variables.scss +18 -0
- package/src/element/button/_plugin.scss +20 -1
- package/src/element/checkbox/_plugin.scss +3 -4
- package/src/element/checkbox/_variables.scss +2 -5
- package/src/element/divider/_index.scss +2 -0
- package/src/element/divider/_plugin.scss +69 -0
- package/src/element/divider/_variables.scss +16 -0
- package/src/element/file/_plugin.scss +2 -0
- package/src/element/file/_variables.scss +2 -6
- package/src/element/image/_index.scss +2 -0
- package/src/element/image/_plugin.scss +106 -0
- package/src/element/image/_variables.scss +53 -0
- package/src/element/progress/_plugin.scss +9 -28
- package/src/element/progress/_variables.scss +2 -8
- package/src/element/radio/_plugin.scss +4 -4
- package/src/element/radio/_variables.scss +2 -2
- package/src/element/range/_plugin.scss +9 -20
- package/src/element/range/_variables.scss +7 -1
- package/src/element/select/_plugin.scss +3 -4
- package/src/element/select/_variables.scss +2 -6
- package/src/element/spinner/_index.scss +2 -0
- package/src/element/spinner/_plugin.scss +78 -0
- package/src/element/spinner/_variables.scss +22 -0
- package/src/element/switch/_plugin.scss +6 -10
- package/src/element/switch/_variables.scss +2 -10
- package/src/element/text-input/_plugin.scss +3 -1
- package/src/element/text-input/_variables.scss +5 -5
- package/src/element/textarea/_plugin.scss +3 -1
- package/src/element/textarea/_variables.scss +2 -2
- package/src/helper/_border.scss +43 -0
- package/src/helper/_color.scss +29 -0
- package/src/helper/{_controls.scss → _controls-internal.scss} +21 -0
- package/src/helper/_flex.scss +89 -0
- package/src/helper/_font-size.scss +22 -0
- package/src/helper/_index.scss +18 -1
- package/src/helper/_interactions.scss +41 -0
- package/src/helper/_line-height.scss +22 -0
- package/src/helper/_object-fit.scss +15 -0
- package/src/helper/_overflow.scss +28 -0
- package/src/helper/_position.scss +47 -0
- package/src/helper/_ratio.scss +35 -0
- package/src/helper/_shadow.scss +31 -0
- package/src/helper/_sizing.scss +65 -0
- package/src/helper/_spacing.scss +95 -0
- package/src/helper/_stack.scss +24 -0
- package/src/helper/_state.scss +2 -17
- package/src/helper/_text.scss +92 -0
- package/src/helper/_tooltip.scss +100 -0
- package/src/helper/_visibility.scss +80 -0
- package/src/layout/_index.scss +2 -0
- package/src/layout/container/_plugin.scss +2 -0
- package/src/layout/container/_variables.scss +2 -0
- package/src/layout/flex/_plugin.scss +2 -1
- package/src/layout/flex/_variables.scss +2 -2
- package/src/layout/footer/_index.scss +2 -0
- package/src/layout/footer/_plugin.scss +24 -0
- package/src/layout/footer/_variables.scss +11 -0
- package/src/layout/grid/_plugin.scss +2 -0
- package/src/layout/grid/_variables.scss +20 -16
- package/src/layout/hero/_index.scss +2 -0
- package/src/layout/hero/_plugin.scss +54 -0
- package/src/layout/hero/_variables.scss +23 -0
- package/src/module/_index.scss +7 -0
- package/src/module/alert/_plugin.scss +6 -1
- package/src/module/alert/_variables.scss +7 -0
- package/src/module/breadcrumb/_index.scss +2 -0
- package/src/module/breadcrumb/_plugin.scss +73 -0
- package/src/module/breadcrumb/_variables.scss +27 -0
- package/src/module/buttons/_index.scss +2 -0
- package/src/module/buttons/_plugin.scss +67 -0
- package/src/module/buttons/_variables.scss +10 -0
- package/src/module/card/_plugin.scss +96 -2
- package/src/module/card/_variables.scss +39 -0
- package/src/module/dropdown/_index.scss +2 -0
- package/src/module/dropdown/_plugin.scss +155 -0
- package/src/module/dropdown/_variables.scss +50 -0
- package/src/module/field/_plugin.scss +2 -0
- package/src/module/modal/_plugin.scss +2 -0
- package/src/module/navbar/_plugin.scss +4 -1
- package/src/module/navbar/_variables.scss +6 -2
- package/src/module/pagination/_index.scss +2 -0
- package/src/module/pagination/_plugin.scss +276 -0
- package/src/module/pagination/_variables.scss +64 -0
- package/src/module/popover/_index.scss +2 -0
- package/src/module/popover/_plugin.scss +183 -0
- package/src/module/popover/_variables.scss +44 -0
- package/src/module/section/_index.scss +2 -0
- package/src/module/section/_plugin.scss +47 -0
- package/src/module/section/_variables.scss +24 -0
- package/src/module/tabs/_plugin.scss +3 -1
- package/src/module/toast/_index.scss +2 -0
- package/src/module/toast/_plugin.scss +184 -0
- package/src/module/toast/_variables.scss +56 -0
- package/src/typography/_index.scss +4 -0
- package/src/typography/base/_plugin.scss +2 -0
- package/src/typography/base/_variables.scss +4 -3
- package/src/typography/blockquote/_index.scss +2 -0
- package/src/typography/blockquote/_plugin.scss +22 -0
- package/src/typography/blockquote/_variables.scss +13 -0
- package/src/typography/content/_plugin.scss +2 -0
- package/src/typography/content/_variables.scss +2 -0
- package/src/typography/figure/_index.scss +2 -0
- package/src/typography/figure/_plugin.scss +29 -0
- package/src/typography/figure/_variables.scss +13 -0
- package/src/typography/lead/_index.scss +2 -0
- package/src/typography/lead/_plugin.scss +12 -0
- package/src/typography/lead/_variables.scss +6 -0
- package/src/typography/link/_mixins.scss +2 -0
- package/src/typography/link/_plugin.scss +2 -0
- package/src/typography/link/_variables.scss +2 -0
- package/src/typography/list/_index.scss +2 -0
- package/src/typography/list/_plugin.scss +18 -0
- package/src/typography/list/_variables.scss +6 -0
- package/src/typography/table/_plugin.scss +2 -0
- package/src/typography/table/_variables.scss +2 -0
- package/src/typography/title/_plugin.scss +2 -0
- package/src/typography/title/_variables.scss +2 -0
- package/src/variables/_color.scss +20 -12
- package/src/variables/_feature.scss +36 -0
- package/src/variables/_global.scss +8 -0
- package/src/variables/_selector.scss +1 -0
- package/dist/tokens/dark.json +0 -85
- package/dist/tokens/default.json +0 -85
- package/dist/tokens/high-contrast.json +0 -85
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:light){:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}}:root.theme-light{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:dark){:root{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}}.theme-dark{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}.m-0{margin:0!important}.mt-0{margin-block-start:0!important}.mb-0{margin-block-end:0!important}.ms-0{margin-inline-start:0!important}.me-0,.mx-0{margin-inline-end:0!important}.mx-0{margin-inline-start:0!important}.my-0{margin-block-start:0!important;margin-block-end:0!important}.m-1{margin:.25rem!important}.mt-1{margin-block-start:.25rem!important}.mb-1{margin-block-end:.25rem!important}.ms-1{margin-inline-start:.25rem!important}.me-1,.mx-1{margin-inline-end:.25rem!important}.mx-1{margin-inline-start:.25rem!important}.my-1{margin-block-start:.25rem!important;margin-block-end:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-block-start:.5rem!important}.mb-2{margin-block-end:.5rem!important}.ms-2{margin-inline-start:.5rem!important}.me-2,.mx-2{margin-inline-end:.5rem!important}.mx-2{margin-inline-start:.5rem!important}.my-2{margin-block-start:.5rem!important;margin-block-end:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-block-start:.75rem!important}.mb-3{margin-block-end:.75rem!important}.ms-3{margin-inline-start:.75rem!important}.me-3,.mx-3{margin-inline-end:.75rem!important}.mx-3{margin-inline-start:.75rem!important}.my-3{margin-block-start:.75rem!important;margin-block-end:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-block-start:1rem!important}.mb-4{margin-block-end:1rem!important}.ms-4{margin-inline-start:1rem!important}.me-4,.mx-4{margin-inline-end:1rem!important}.mx-4{margin-inline-start:1rem!important}.my-4{margin-block-start:1rem!important;margin-block-end:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-block-start:1.5rem!important}.mb-5{margin-block-end:1.5rem!important}.ms-5{margin-inline-start:1.5rem!important}.me-5,.mx-5{margin-inline-end:1.5rem!important}.mx-5{margin-inline-start:1.5rem!important}.my-5{margin-block-start:1.5rem!important;margin-block-end:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-block-start:3rem!important}.mb-6{margin-block-end:3rem!important}.ms-6{margin-inline-start:3rem!important}.me-6,.mx-6{margin-inline-end:3rem!important}.mx-6{margin-inline-start:3rem!important}.my-6{margin-block-start:3rem!important;margin-block-end:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-block-start:auto!important}.mb-auto{margin-block-end:auto!important}.ms-auto{margin-inline-start:auto!important}.me-auto,.mx-auto{margin-inline-end:auto!important}.mx-auto{margin-inline-start:auto!important}.my-auto{margin-block-start:auto!important;margin-block-end:auto!important}.p-0{padding:0!important}.pt-0{padding-block-start:0!important}.pb-0{padding-block-end:0!important}.ps-0{padding-inline-start:0!important}.pe-0,.px-0{padding-inline-end:0!important}.px-0{padding-inline-start:0!important}.py-0{padding-block-start:0!important;padding-block-end:0!important}.p-1{padding:.25rem!important}.pt-1{padding-block-start:.25rem!important}.pb-1{padding-block-end:.25rem!important}.ps-1{padding-inline-start:.25rem!important}.pe-1,.px-1{padding-inline-end:.25rem!important}.px-1{padding-inline-start:.25rem!important}.py-1{padding-block-start:.25rem!important;padding-block-end:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-block-start:.5rem!important}.pb-2{padding-block-end:.5rem!important}.ps-2{padding-inline-start:.5rem!important}.pe-2,.px-2{padding-inline-end:.5rem!important}.px-2{padding-inline-start:.5rem!important}.py-2{padding-block-start:.5rem!important;padding-block-end:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-block-start:.75rem!important}.pb-3{padding-block-end:.75rem!important}.ps-3{padding-inline-start:.75rem!important}.pe-3,.px-3{padding-inline-end:.75rem!important}.px-3{padding-inline-start:.75rem!important}.py-3{padding-block-start:.75rem!important;padding-block-end:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-block-start:1rem!important}.pb-4{padding-block-end:1rem!important}.ps-4{padding-inline-start:1rem!important}.pe-4,.px-4{padding-inline-end:1rem!important}.px-4{padding-inline-start:1rem!important}.py-4{padding-block-start:1rem!important;padding-block-end:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-block-start:1.5rem!important}.pb-5{padding-block-end:1.5rem!important}.ps-5{padding-inline-start:1.5rem!important}.pe-5,.px-5{padding-inline-end:1.5rem!important}.px-5{padding-inline-start:1.5rem!important}.py-5{padding-block-start:1.5rem!important;padding-block-end:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-block-start:3rem!important}.pb-6{padding-block-end:3rem!important}.ps-6{padding-inline-start:3rem!important}.pe-6,.px-6{padding-inline-end:3rem!important}.px-6{padding-inline-start:3rem!important}.py-6{padding-block-start:3rem!important;padding-block-end:3rem!important}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--kc-bg: #ffffff;
|
|
3
|
+
--kc-fg: #27282b;
|
|
4
|
+
--kc-link: #1a6347;
|
|
5
|
+
--kc-link-hover: #525a22;
|
|
6
|
+
--kc-link-visited: #8c351a;
|
|
7
|
+
--kc-border-radius: 5px;
|
|
8
|
+
--kc-card-bg: #ffffff;
|
|
9
|
+
--kc-card-fg: #27282b;
|
|
10
|
+
--kc-focus-ring: #1a6347;
|
|
11
|
+
--kc-default-bg: #ffffff;
|
|
12
|
+
--kc-default-fg: #27282b;
|
|
13
|
+
--kc-primary-bg: #247d59;
|
|
14
|
+
--kc-primary-fg: #ffffff;
|
|
15
|
+
--kc-warning-bg: #7a4f10;
|
|
16
|
+
--kc-warning-fg: #ffffff;
|
|
17
|
+
--kc-danger-bg: #8c351a;
|
|
18
|
+
--kc-danger-fg: #ffffff;
|
|
19
|
+
--kc-success-bg: #525a22;
|
|
20
|
+
--kc-success-fg: #ffffff;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@media (prefers-color-scheme: light) {
|
|
24
|
+
:root {
|
|
25
|
+
--kc-bg: #ffffff;
|
|
26
|
+
--kc-fg: #27282b;
|
|
27
|
+
--kc-link: #1a6347;
|
|
28
|
+
--kc-link-hover: #525a22;
|
|
29
|
+
--kc-link-visited: #8c351a;
|
|
30
|
+
--kc-border-radius: 5px;
|
|
31
|
+
--kc-card-bg: #ffffff;
|
|
32
|
+
--kc-card-fg: #27282b;
|
|
33
|
+
--kc-focus-ring: #1a6347;
|
|
34
|
+
--kc-default-bg: #ffffff;
|
|
35
|
+
--kc-default-fg: #27282b;
|
|
36
|
+
--kc-primary-bg: #247d59;
|
|
37
|
+
--kc-primary-fg: #ffffff;
|
|
38
|
+
--kc-warning-bg: #7a4f10;
|
|
39
|
+
--kc-warning-fg: #ffffff;
|
|
40
|
+
--kc-danger-bg: #8c351a;
|
|
41
|
+
--kc-danger-fg: #ffffff;
|
|
42
|
+
--kc-success-bg: #525a22;
|
|
43
|
+
--kc-success-fg: #ffffff;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
:root.theme-light {
|
|
47
|
+
--kc-bg: #ffffff;
|
|
48
|
+
--kc-fg: #27282b;
|
|
49
|
+
--kc-link: #1a6347;
|
|
50
|
+
--kc-link-hover: #525a22;
|
|
51
|
+
--kc-link-visited: #8c351a;
|
|
52
|
+
--kc-border-radius: 5px;
|
|
53
|
+
--kc-card-bg: #ffffff;
|
|
54
|
+
--kc-card-fg: #27282b;
|
|
55
|
+
--kc-focus-ring: #1a6347;
|
|
56
|
+
--kc-default-bg: #ffffff;
|
|
57
|
+
--kc-default-fg: #27282b;
|
|
58
|
+
--kc-primary-bg: #247d59;
|
|
59
|
+
--kc-primary-fg: #ffffff;
|
|
60
|
+
--kc-warning-bg: #7a4f10;
|
|
61
|
+
--kc-warning-fg: #ffffff;
|
|
62
|
+
--kc-danger-bg: #8c351a;
|
|
63
|
+
--kc-danger-fg: #ffffff;
|
|
64
|
+
--kc-success-bg: #525a22;
|
|
65
|
+
--kc-success-fg: #ffffff;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media (prefers-color-scheme: dark) {
|
|
69
|
+
:root {
|
|
70
|
+
--kc-bg: #121417;
|
|
71
|
+
--kc-fg: #e6e8eb;
|
|
72
|
+
--kc-link: #6bd1a7;
|
|
73
|
+
--kc-link-hover: #9ce3c2;
|
|
74
|
+
--kc-link-visited: #c8a8e0;
|
|
75
|
+
--kc-border-radius: 5px;
|
|
76
|
+
--kc-card-bg: #1b1e22;
|
|
77
|
+
--kc-card-fg: #e6e8eb;
|
|
78
|
+
--kc-focus-ring: #6bd1a7;
|
|
79
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
80
|
+
--kc-default-bg: #1b1e22;
|
|
81
|
+
--kc-default-fg: #e6e8eb;
|
|
82
|
+
--kc-primary-bg: #1f6e51;
|
|
83
|
+
--kc-primary-fg: #f4f7fb;
|
|
84
|
+
--kc-warning-bg: #b8991e;
|
|
85
|
+
--kc-warning-fg: #1b1b13;
|
|
86
|
+
--kc-danger-bg: #a2481a;
|
|
87
|
+
--kc-danger-fg: #fff6f0;
|
|
88
|
+
--kc-success-bg: #5c6529;
|
|
89
|
+
--kc-success-fg: #f3f6e5;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.theme-dark {
|
|
93
|
+
--kc-bg: #121417;
|
|
94
|
+
--kc-fg: #e6e8eb;
|
|
95
|
+
--kc-link: #6bd1a7;
|
|
96
|
+
--kc-link-hover: #9ce3c2;
|
|
97
|
+
--kc-link-visited: #c8a8e0;
|
|
98
|
+
--kc-border-radius: 5px;
|
|
99
|
+
--kc-card-bg: #1b1e22;
|
|
100
|
+
--kc-card-fg: #e6e8eb;
|
|
101
|
+
--kc-focus-ring: #6bd1a7;
|
|
102
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
103
|
+
--kc-default-bg: #1b1e22;
|
|
104
|
+
--kc-default-fg: #e6e8eb;
|
|
105
|
+
--kc-primary-bg: #1f6e51;
|
|
106
|
+
--kc-primary-fg: #f4f7fb;
|
|
107
|
+
--kc-warning-bg: #b8991e;
|
|
108
|
+
--kc-warning-fg: #1b1b13;
|
|
109
|
+
--kc-danger-bg: #a2481a;
|
|
110
|
+
--kc-danger-fg: #fff6f0;
|
|
111
|
+
--kc-success-bg: #5c6529;
|
|
112
|
+
--kc-success-fg: #f3f6e5;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.hstack {
|
|
116
|
+
display: flex;
|
|
117
|
+
flex-direction: row;
|
|
118
|
+
align-items: center;
|
|
119
|
+
gap: var(--kc-stack-gap, 0);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.vstack {
|
|
123
|
+
display: flex;
|
|
124
|
+
flex-direction: column;
|
|
125
|
+
align-self: stretch;
|
|
126
|
+
gap: var(--kc-stack-gap, 0);
|
|
127
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:light){:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}}:root.theme-light{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:dark){:root{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}}.theme-dark{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}.hstack{flex-direction:row;align-items:center}.hstack,.vstack{display:flex;gap:var(--kc-stack-gap,0)}.vstack{flex-direction:column;align-self:stretch}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--kc-bg: #ffffff;
|
|
3
|
+
--kc-fg: #27282b;
|
|
4
|
+
--kc-link: #1a6347;
|
|
5
|
+
--kc-link-hover: #525a22;
|
|
6
|
+
--kc-link-visited: #8c351a;
|
|
7
|
+
--kc-border-radius: 5px;
|
|
8
|
+
--kc-card-bg: #ffffff;
|
|
9
|
+
--kc-card-fg: #27282b;
|
|
10
|
+
--kc-focus-ring: #1a6347;
|
|
11
|
+
--kc-default-bg: #ffffff;
|
|
12
|
+
--kc-default-fg: #27282b;
|
|
13
|
+
--kc-primary-bg: #247d59;
|
|
14
|
+
--kc-primary-fg: #ffffff;
|
|
15
|
+
--kc-warning-bg: #7a4f10;
|
|
16
|
+
--kc-warning-fg: #ffffff;
|
|
17
|
+
--kc-danger-bg: #8c351a;
|
|
18
|
+
--kc-danger-fg: #ffffff;
|
|
19
|
+
--kc-success-bg: #525a22;
|
|
20
|
+
--kc-success-fg: #ffffff;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@media (prefers-color-scheme: light) {
|
|
24
|
+
:root {
|
|
25
|
+
--kc-bg: #ffffff;
|
|
26
|
+
--kc-fg: #27282b;
|
|
27
|
+
--kc-link: #1a6347;
|
|
28
|
+
--kc-link-hover: #525a22;
|
|
29
|
+
--kc-link-visited: #8c351a;
|
|
30
|
+
--kc-border-radius: 5px;
|
|
31
|
+
--kc-card-bg: #ffffff;
|
|
32
|
+
--kc-card-fg: #27282b;
|
|
33
|
+
--kc-focus-ring: #1a6347;
|
|
34
|
+
--kc-default-bg: #ffffff;
|
|
35
|
+
--kc-default-fg: #27282b;
|
|
36
|
+
--kc-primary-bg: #247d59;
|
|
37
|
+
--kc-primary-fg: #ffffff;
|
|
38
|
+
--kc-warning-bg: #7a4f10;
|
|
39
|
+
--kc-warning-fg: #ffffff;
|
|
40
|
+
--kc-danger-bg: #8c351a;
|
|
41
|
+
--kc-danger-fg: #ffffff;
|
|
42
|
+
--kc-success-bg: #525a22;
|
|
43
|
+
--kc-success-fg: #ffffff;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
:root.theme-light {
|
|
47
|
+
--kc-bg: #ffffff;
|
|
48
|
+
--kc-fg: #27282b;
|
|
49
|
+
--kc-link: #1a6347;
|
|
50
|
+
--kc-link-hover: #525a22;
|
|
51
|
+
--kc-link-visited: #8c351a;
|
|
52
|
+
--kc-border-radius: 5px;
|
|
53
|
+
--kc-card-bg: #ffffff;
|
|
54
|
+
--kc-card-fg: #27282b;
|
|
55
|
+
--kc-focus-ring: #1a6347;
|
|
56
|
+
--kc-default-bg: #ffffff;
|
|
57
|
+
--kc-default-fg: #27282b;
|
|
58
|
+
--kc-primary-bg: #247d59;
|
|
59
|
+
--kc-primary-fg: #ffffff;
|
|
60
|
+
--kc-warning-bg: #7a4f10;
|
|
61
|
+
--kc-warning-fg: #ffffff;
|
|
62
|
+
--kc-danger-bg: #8c351a;
|
|
63
|
+
--kc-danger-fg: #ffffff;
|
|
64
|
+
--kc-success-bg: #525a22;
|
|
65
|
+
--kc-success-fg: #ffffff;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media (prefers-color-scheme: dark) {
|
|
69
|
+
:root {
|
|
70
|
+
--kc-bg: #121417;
|
|
71
|
+
--kc-fg: #e6e8eb;
|
|
72
|
+
--kc-link: #6bd1a7;
|
|
73
|
+
--kc-link-hover: #9ce3c2;
|
|
74
|
+
--kc-link-visited: #c8a8e0;
|
|
75
|
+
--kc-border-radius: 5px;
|
|
76
|
+
--kc-card-bg: #1b1e22;
|
|
77
|
+
--kc-card-fg: #e6e8eb;
|
|
78
|
+
--kc-focus-ring: #6bd1a7;
|
|
79
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
80
|
+
--kc-default-bg: #1b1e22;
|
|
81
|
+
--kc-default-fg: #e6e8eb;
|
|
82
|
+
--kc-primary-bg: #1f6e51;
|
|
83
|
+
--kc-primary-fg: #f4f7fb;
|
|
84
|
+
--kc-warning-bg: #b8991e;
|
|
85
|
+
--kc-warning-fg: #1b1b13;
|
|
86
|
+
--kc-danger-bg: #a2481a;
|
|
87
|
+
--kc-danger-fg: #fff6f0;
|
|
88
|
+
--kc-success-bg: #5c6529;
|
|
89
|
+
--kc-success-fg: #f3f6e5;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.theme-dark {
|
|
93
|
+
--kc-bg: #121417;
|
|
94
|
+
--kc-fg: #e6e8eb;
|
|
95
|
+
--kc-link: #6bd1a7;
|
|
96
|
+
--kc-link-hover: #9ce3c2;
|
|
97
|
+
--kc-link-visited: #c8a8e0;
|
|
98
|
+
--kc-border-radius: 5px;
|
|
99
|
+
--kc-card-bg: #1b1e22;
|
|
100
|
+
--kc-card-fg: #e6e8eb;
|
|
101
|
+
--kc-focus-ring: #6bd1a7;
|
|
102
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
103
|
+
--kc-default-bg: #1b1e22;
|
|
104
|
+
--kc-default-fg: #e6e8eb;
|
|
105
|
+
--kc-primary-bg: #1f6e51;
|
|
106
|
+
--kc-primary-fg: #f4f7fb;
|
|
107
|
+
--kc-warning-bg: #b8991e;
|
|
108
|
+
--kc-warning-fg: #1b1b13;
|
|
109
|
+
--kc-danger-bg: #a2481a;
|
|
110
|
+
--kc-danger-fg: #fff6f0;
|
|
111
|
+
--kc-success-bg: #5c6529;
|
|
112
|
+
--kc-success-fg: #f3f6e5;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.has-text-left {
|
|
116
|
+
text-align: left !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.has-text-center {
|
|
120
|
+
text-align: center !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.has-text-right {
|
|
124
|
+
text-align: right !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.has-text-justify {
|
|
128
|
+
text-align: justify !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@media screen and (min-width: 768px) {
|
|
132
|
+
.has-text-left-tablet {
|
|
133
|
+
text-align: left !important;
|
|
134
|
+
}
|
|
135
|
+
.has-text-center-tablet {
|
|
136
|
+
text-align: center !important;
|
|
137
|
+
}
|
|
138
|
+
.has-text-right-tablet {
|
|
139
|
+
text-align: right !important;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
@media screen and (min-width: 1024px) {
|
|
143
|
+
.has-text-left-desktop {
|
|
144
|
+
text-align: left !important;
|
|
145
|
+
}
|
|
146
|
+
.has-text-center-desktop {
|
|
147
|
+
text-align: center !important;
|
|
148
|
+
}
|
|
149
|
+
.has-text-right-desktop {
|
|
150
|
+
text-align: right !important;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
@media screen and (min-width: 1280px) {
|
|
154
|
+
.has-text-left-widescreen {
|
|
155
|
+
text-align: left !important;
|
|
156
|
+
}
|
|
157
|
+
.has-text-center-widescreen {
|
|
158
|
+
text-align: center !important;
|
|
159
|
+
}
|
|
160
|
+
.has-text-right-widescreen {
|
|
161
|
+
text-align: right !important;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
@media screen and (min-width: 1536px) {
|
|
165
|
+
.has-text-left-fullhd {
|
|
166
|
+
text-align: left !important;
|
|
167
|
+
}
|
|
168
|
+
.has-text-center-fullhd {
|
|
169
|
+
text-align: center !important;
|
|
170
|
+
}
|
|
171
|
+
.has-text-right-fullhd {
|
|
172
|
+
text-align: right !important;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
.is-uppercase {
|
|
176
|
+
text-transform: uppercase !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.is-lowercase {
|
|
180
|
+
text-transform: lowercase !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.is-capitalized {
|
|
184
|
+
text-transform: capitalize !important;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.is-italic {
|
|
188
|
+
font-style: italic !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.has-text-weight-light {
|
|
192
|
+
font-weight: 300 !important;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.has-text-weight-normal {
|
|
196
|
+
font-weight: 400 !important;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.has-text-weight-medium {
|
|
200
|
+
font-weight: 500 !important;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.has-text-weight-semibold {
|
|
204
|
+
font-weight: 600 !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.has-text-weight-bold {
|
|
208
|
+
font-weight: 700 !important;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.is-underlined {
|
|
212
|
+
text-decoration: underline !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.is-line-through {
|
|
216
|
+
text-decoration: line-through !important;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.is-no-decoration {
|
|
220
|
+
text-decoration: none !important;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.is-truncated {
|
|
224
|
+
white-space: nowrap !important;
|
|
225
|
+
overflow: hidden !important;
|
|
226
|
+
text-overflow: ellipsis !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.is-nowrap {
|
|
230
|
+
white-space: nowrap !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.is-text-break {
|
|
234
|
+
overflow-wrap: break-word !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.is-family-sans-serif {
|
|
238
|
+
font-family: sans-serif !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.is-family-monospace {
|
|
242
|
+
font-family: monospace !important;
|
|
243
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:light){:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}}:root.theme-light{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:dark){:root{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}}.theme-dark{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}.has-text-left{text-align:left!important}.has-text-center{text-align:center!important}.has-text-right{text-align:right!important}.has-text-justify{text-align:justify!important}@media screen and (min-width:768px){.has-text-left-tablet{text-align:left!important}.has-text-center-tablet{text-align:center!important}.has-text-right-tablet{text-align:right!important}}@media screen and (min-width:1024px){.has-text-left-desktop{text-align:left!important}.has-text-center-desktop{text-align:center!important}.has-text-right-desktop{text-align:right!important}}@media screen and (min-width:1280px){.has-text-left-widescreen{text-align:left!important}.has-text-center-widescreen{text-align:center!important}.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width:1536px){.has-text-left-fullhd{text-align:left!important}.has-text-center-fullhd{text-align:center!important}.has-text-right-fullhd{text-align:right!important}}.is-uppercase{text-transform:uppercase!important}.is-lowercase{text-transform:lowercase!important}.is-capitalized{text-transform:capitalize!important}.is-italic{font-style:italic!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-underlined{text-decoration:underline!important}.is-line-through{text-decoration:line-through!important}.is-no-decoration{text-decoration:none!important}.is-truncated{overflow:hidden!important;text-overflow:ellipsis!important}.is-nowrap,.is-truncated{white-space:nowrap!important}.is-text-break{overflow-wrap:break-word!important}.is-family-sans-serif{font-family:sans-serif!important}.is-family-monospace{font-family:monospace!important}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--kc-bg: #ffffff;
|
|
3
|
+
--kc-fg: #27282b;
|
|
4
|
+
--kc-link: #1a6347;
|
|
5
|
+
--kc-link-hover: #525a22;
|
|
6
|
+
--kc-link-visited: #8c351a;
|
|
7
|
+
--kc-border-radius: 5px;
|
|
8
|
+
--kc-card-bg: #ffffff;
|
|
9
|
+
--kc-card-fg: #27282b;
|
|
10
|
+
--kc-focus-ring: #1a6347;
|
|
11
|
+
--kc-default-bg: #ffffff;
|
|
12
|
+
--kc-default-fg: #27282b;
|
|
13
|
+
--kc-primary-bg: #247d59;
|
|
14
|
+
--kc-primary-fg: #ffffff;
|
|
15
|
+
--kc-warning-bg: #7a4f10;
|
|
16
|
+
--kc-warning-fg: #ffffff;
|
|
17
|
+
--kc-danger-bg: #8c351a;
|
|
18
|
+
--kc-danger-fg: #ffffff;
|
|
19
|
+
--kc-success-bg: #525a22;
|
|
20
|
+
--kc-success-fg: #ffffff;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@media (prefers-color-scheme: light) {
|
|
24
|
+
:root {
|
|
25
|
+
--kc-bg: #ffffff;
|
|
26
|
+
--kc-fg: #27282b;
|
|
27
|
+
--kc-link: #1a6347;
|
|
28
|
+
--kc-link-hover: #525a22;
|
|
29
|
+
--kc-link-visited: #8c351a;
|
|
30
|
+
--kc-border-radius: 5px;
|
|
31
|
+
--kc-card-bg: #ffffff;
|
|
32
|
+
--kc-card-fg: #27282b;
|
|
33
|
+
--kc-focus-ring: #1a6347;
|
|
34
|
+
--kc-default-bg: #ffffff;
|
|
35
|
+
--kc-default-fg: #27282b;
|
|
36
|
+
--kc-primary-bg: #247d59;
|
|
37
|
+
--kc-primary-fg: #ffffff;
|
|
38
|
+
--kc-warning-bg: #7a4f10;
|
|
39
|
+
--kc-warning-fg: #ffffff;
|
|
40
|
+
--kc-danger-bg: #8c351a;
|
|
41
|
+
--kc-danger-fg: #ffffff;
|
|
42
|
+
--kc-success-bg: #525a22;
|
|
43
|
+
--kc-success-fg: #ffffff;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
:root.theme-light {
|
|
47
|
+
--kc-bg: #ffffff;
|
|
48
|
+
--kc-fg: #27282b;
|
|
49
|
+
--kc-link: #1a6347;
|
|
50
|
+
--kc-link-hover: #525a22;
|
|
51
|
+
--kc-link-visited: #8c351a;
|
|
52
|
+
--kc-border-radius: 5px;
|
|
53
|
+
--kc-card-bg: #ffffff;
|
|
54
|
+
--kc-card-fg: #27282b;
|
|
55
|
+
--kc-focus-ring: #1a6347;
|
|
56
|
+
--kc-default-bg: #ffffff;
|
|
57
|
+
--kc-default-fg: #27282b;
|
|
58
|
+
--kc-primary-bg: #247d59;
|
|
59
|
+
--kc-primary-fg: #ffffff;
|
|
60
|
+
--kc-warning-bg: #7a4f10;
|
|
61
|
+
--kc-warning-fg: #ffffff;
|
|
62
|
+
--kc-danger-bg: #8c351a;
|
|
63
|
+
--kc-danger-fg: #ffffff;
|
|
64
|
+
--kc-success-bg: #525a22;
|
|
65
|
+
--kc-success-fg: #ffffff;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media (prefers-color-scheme: dark) {
|
|
69
|
+
:root {
|
|
70
|
+
--kc-bg: #121417;
|
|
71
|
+
--kc-fg: #e6e8eb;
|
|
72
|
+
--kc-link: #6bd1a7;
|
|
73
|
+
--kc-link-hover: #9ce3c2;
|
|
74
|
+
--kc-link-visited: #c8a8e0;
|
|
75
|
+
--kc-border-radius: 5px;
|
|
76
|
+
--kc-card-bg: #1b1e22;
|
|
77
|
+
--kc-card-fg: #e6e8eb;
|
|
78
|
+
--kc-focus-ring: #6bd1a7;
|
|
79
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
80
|
+
--kc-default-bg: #1b1e22;
|
|
81
|
+
--kc-default-fg: #e6e8eb;
|
|
82
|
+
--kc-primary-bg: #1f6e51;
|
|
83
|
+
--kc-primary-fg: #f4f7fb;
|
|
84
|
+
--kc-warning-bg: #b8991e;
|
|
85
|
+
--kc-warning-fg: #1b1b13;
|
|
86
|
+
--kc-danger-bg: #a2481a;
|
|
87
|
+
--kc-danger-fg: #fff6f0;
|
|
88
|
+
--kc-success-bg: #5c6529;
|
|
89
|
+
--kc-success-fg: #f3f6e5;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.theme-dark {
|
|
93
|
+
--kc-bg: #121417;
|
|
94
|
+
--kc-fg: #e6e8eb;
|
|
95
|
+
--kc-link: #6bd1a7;
|
|
96
|
+
--kc-link-hover: #9ce3c2;
|
|
97
|
+
--kc-link-visited: #c8a8e0;
|
|
98
|
+
--kc-border-radius: 5px;
|
|
99
|
+
--kc-card-bg: #1b1e22;
|
|
100
|
+
--kc-card-fg: #e6e8eb;
|
|
101
|
+
--kc-focus-ring: #6bd1a7;
|
|
102
|
+
--kc-modal-backdrop: color-mix(in srgb, #e6e8eb 22%, transparent);
|
|
103
|
+
--kc-default-bg: #1b1e22;
|
|
104
|
+
--kc-default-fg: #e6e8eb;
|
|
105
|
+
--kc-primary-bg: #1f6e51;
|
|
106
|
+
--kc-primary-fg: #f4f7fb;
|
|
107
|
+
--kc-warning-bg: #b8991e;
|
|
108
|
+
--kc-warning-fg: #1b1b13;
|
|
109
|
+
--kc-danger-bg: #a2481a;
|
|
110
|
+
--kc-danger-fg: #fff6f0;
|
|
111
|
+
--kc-success-bg: #5c6529;
|
|
112
|
+
--kc-success-fg: #f3f6e5;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
[data-tooltip] {
|
|
116
|
+
position: relative;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
[data-tooltip]:not([data-tooltip=""])::after {
|
|
120
|
+
content: attr(data-tooltip);
|
|
121
|
+
position: absolute;
|
|
122
|
+
z-index: 1080;
|
|
123
|
+
padding: 0.4em 0.8em;
|
|
124
|
+
border-radius: 4px;
|
|
125
|
+
background-color: rgba(0, 0, 0, 0.85);
|
|
126
|
+
background-color: var(--kc-tooltip-bg, rgba(0, 0, 0, 0.85));
|
|
127
|
+
color: #fff;
|
|
128
|
+
color: var(--kc-tooltip-fg, #fff);
|
|
129
|
+
font-size: 0.8em;
|
|
130
|
+
white-space: nowrap;
|
|
131
|
+
pointer-events: none;
|
|
132
|
+
opacity: 0;
|
|
133
|
+
transition: opacity 120ms ease-in-out;
|
|
134
|
+
bottom: 100%;
|
|
135
|
+
left: 50%;
|
|
136
|
+
transform: translate(-50%, -0.5rem);
|
|
137
|
+
}
|
|
138
|
+
[data-tooltip]:not([data-tooltip=""]):hover::after, [data-tooltip]:not([data-tooltip=""]):focus-within::after {
|
|
139
|
+
opacity: 1;
|
|
140
|
+
}
|
|
141
|
+
[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=bottom]::after {
|
|
142
|
+
top: 100%;
|
|
143
|
+
bottom: auto;
|
|
144
|
+
left: 50%;
|
|
145
|
+
right: auto;
|
|
146
|
+
transform: translate(-50%, 0.5rem);
|
|
147
|
+
}
|
|
148
|
+
[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=left]::after {
|
|
149
|
+
top: 50%;
|
|
150
|
+
bottom: auto;
|
|
151
|
+
right: 100%;
|
|
152
|
+
left: auto;
|
|
153
|
+
transform: translate(-0.5rem, -50%);
|
|
154
|
+
}
|
|
155
|
+
[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=right]::after {
|
|
156
|
+
top: 50%;
|
|
157
|
+
bottom: auto;
|
|
158
|
+
left: 100%;
|
|
159
|
+
right: auto;
|
|
160
|
+
transform: translate(0.5rem, -50%);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@media (prefers-reduced-motion: reduce) {
|
|
164
|
+
[data-tooltip]:not([data-tooltip=""])::after {
|
|
165
|
+
transition: none;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
@media (forced-colors: active) {
|
|
169
|
+
[data-tooltip]:not([data-tooltip=""])::after {
|
|
170
|
+
background-color: Canvas;
|
|
171
|
+
color: CanvasText;
|
|
172
|
+
border: 1px solid CanvasText;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:light){:root{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}}:root.theme-light{--kc-bg:#fff;--kc-fg:#27282b;--kc-link:#1a6347;--kc-link-hover:#525a22;--kc-link-visited:#8c351a;--kc-border-radius:5px;--kc-card-bg:#fff;--kc-card-fg:#27282b;--kc-focus-ring:#1a6347;--kc-default-bg:#fff;--kc-default-fg:#27282b;--kc-primary-bg:#247d59;--kc-primary-fg:#fff;--kc-warning-bg:#7a4f10;--kc-warning-fg:#fff;--kc-danger-bg:#8c351a;--kc-danger-fg:#fff;--kc-success-bg:#525a22;--kc-success-fg:#fff}@media(prefers-color-scheme:dark){:root{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}}.theme-dark{--kc-bg:#121417;--kc-fg:#e6e8eb;--kc-link:#6bd1a7;--kc-link-hover:#9ce3c2;--kc-link-visited:#c8a8e0;--kc-border-radius:5px;--kc-card-bg:#1b1e22;--kc-card-fg:#e6e8eb;--kc-focus-ring:#6bd1a7;--kc-modal-backdrop:color-mix(in srgb,#e6e8eb 22%,#0000);--kc-default-bg:#1b1e22;--kc-default-fg:#e6e8eb;--kc-primary-bg:#1f6e51;--kc-primary-fg:#f4f7fb;--kc-warning-bg:#b8991e;--kc-warning-fg:#1b1b13;--kc-danger-bg:#a2481a;--kc-danger-fg:#fff6f0;--kc-success-bg:#5c6529;--kc-success-fg:#f3f6e5}[data-tooltip]{position:relative}[data-tooltip]:not([data-tooltip=""]):after{content:attr(data-tooltip);position:absolute;z-index:1080;padding:.4em .8em;border-radius:4px;background-color:#000000d9;background-color:var(--kc-tooltip-bg,#000000d9);color:#fff;color:var(--kc-tooltip-fg,#fff);font-size:.8em;white-space:nowrap;pointer-events:none;opacity:0;transition:opacity .12s ease-in-out;bottom:100%;left:50%;transform:translate(-50%,-.5rem)}[data-tooltip]:not([data-tooltip=""]):focus-within:after,[data-tooltip]:not([data-tooltip=""]):hover:after{opacity:1}[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=bottom]:after{top:100%;bottom:auto;left:50%;right:auto;transform:translate(-50%,.5rem)}[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=left]:after{top:50%;bottom:auto;right:100%;left:auto;transform:translate(-.5rem,-50%)}[data-tooltip]:not([data-tooltip=""])[data-tooltip-position=right]:after{top:50%;bottom:auto;left:100%;right:auto;transform:translate(.5rem,-50%)}@media(prefers-reduced-motion:reduce){[data-tooltip]:not([data-tooltip=""]):after{transition:none}}@media(forced-colors:active){[data-tooltip]:not([data-tooltip=""]):after{background-color:Canvas;color:initial;border:1px solid CanvasText}}
|