@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.
Files changed (217) hide show
  1. package/README.md +23 -5
  2. package/dist/element/badge.css +30 -0
  3. package/dist/element/badge.min.css +1 -1
  4. package/dist/element/box.css +193 -0
  5. package/dist/element/box.min.css +1 -0
  6. package/dist/element/button.css +4 -0
  7. package/dist/element/button.min.css +1 -1
  8. package/dist/element/divider.css +155 -0
  9. package/dist/element/divider.min.css +1 -0
  10. package/dist/element/image.css +434 -0
  11. package/dist/element/image.min.css +1 -0
  12. package/dist/element/range.css +2 -2
  13. package/dist/element/spinner.css +190 -0
  14. package/dist/element/spinner.min.css +1 -0
  15. package/dist/helper/border.css +141 -0
  16. package/dist/helper/border.min.css +1 -0
  17. package/dist/helper/color.css +203 -0
  18. package/dist/helper/color.min.css +1 -0
  19. package/dist/helper/flex.css +277 -0
  20. package/dist/helper/flex.min.css +1 -0
  21. package/dist/helper/font-size.css +137 -0
  22. package/dist/helper/font-size.min.css +1 -0
  23. package/dist/helper/interactions.css +142 -0
  24. package/dist/helper/interactions.min.css +1 -0
  25. package/dist/helper/line-height.css +129 -0
  26. package/dist/helper/line-height.min.css +1 -0
  27. package/dist/helper/object-fit.css +133 -0
  28. package/dist/helper/object-fit.min.css +1 -0
  29. package/dist/helper/overflow.css +165 -0
  30. package/dist/helper/overflow.min.css +1 -0
  31. package/dist/helper/position.css +157 -0
  32. package/dist/helper/position.min.css +1 -0
  33. package/dist/helper/ratio.css +142 -0
  34. package/dist/helper/ratio.min.css +1 -0
  35. package/dist/helper/shadow.css +129 -0
  36. package/dist/helper/shadow.min.css +1 -0
  37. package/dist/helper/sizing.css +177 -0
  38. package/dist/helper/sizing.min.css +1 -0
  39. package/dist/helper/spacing.css +563 -0
  40. package/dist/helper/spacing.min.css +1 -0
  41. package/dist/helper/stack.css +127 -0
  42. package/dist/helper/stack.min.css +1 -0
  43. package/dist/helper/text.css +243 -0
  44. package/dist/helper/text.min.css +1 -0
  45. package/dist/helper/tooltip.css +174 -0
  46. package/dist/helper/tooltip.min.css +1 -0
  47. package/dist/helper/visibility.css +334 -0
  48. package/dist/helper/visibility.min.css +1 -0
  49. package/dist/krysalicss.css +3491 -414
  50. package/dist/krysalicss.css.map +1 -1
  51. package/dist/krysalicss.min.css +1 -1
  52. package/dist/layout/footer.css +155 -0
  53. package/dist/layout/footer.min.css +1 -0
  54. package/dist/layout/hero.css +177 -0
  55. package/dist/layout/hero.min.css +1 -0
  56. package/dist/module/alert.css +30 -0
  57. package/dist/module/alert.min.css +1 -1
  58. package/dist/module/breadcrumb.css +163 -0
  59. package/dist/module/breadcrumb.min.css +1 -0
  60. package/dist/module/buttons.css +158 -0
  61. package/dist/module/buttons.min.css +1 -0
  62. package/dist/module/card.css +89 -0
  63. package/dist/module/card.min.css +1 -1
  64. package/dist/module/dropdown.css +253 -0
  65. package/dist/module/dropdown.min.css +1 -0
  66. package/dist/module/navbar.css +1 -1
  67. package/dist/module/navbar.min.css +1 -1
  68. package/dist/module/pagination.css +301 -0
  69. package/dist/module/pagination.min.css +1 -0
  70. package/dist/module/popover.css +272 -0
  71. package/dist/module/popover.min.css +1 -0
  72. package/dist/module/section.css +138 -0
  73. package/dist/module/section.min.css +1 -0
  74. package/dist/module/toast.css +307 -0
  75. package/dist/module/toast.min.css +1 -0
  76. package/dist/scss-api.json +4672 -0
  77. package/dist/typography/blockquote.css +128 -0
  78. package/dist/typography/blockquote.min.css +1 -0
  79. package/dist/typography/figure.css +132 -0
  80. package/dist/typography/figure.min.css +1 -0
  81. package/dist/typography/lead.css +119 -0
  82. package/dist/typography/lead.min.css +1 -0
  83. package/dist/typography/list.css +125 -0
  84. package/dist/typography/list.min.css +1 -0
  85. package/package.json +8 -2
  86. package/src/base/global/_plugin.scss +2 -0
  87. package/src/base/reset/_plugin.scss +2 -0
  88. package/src/base/reset/_variables.scss +2 -0
  89. package/src/element/_index.scss +4 -0
  90. package/src/element/badge/_plugin.scss +6 -8
  91. package/src/element/badge/_variables.scss +4 -6
  92. package/src/element/box/_index.scss +2 -0
  93. package/src/element/box/_plugin.scss +31 -0
  94. package/src/element/box/_variables.scss +18 -0
  95. package/src/element/button/_plugin.scss +20 -1
  96. package/src/element/checkbox/_plugin.scss +3 -4
  97. package/src/element/checkbox/_variables.scss +2 -5
  98. package/src/element/divider/_index.scss +2 -0
  99. package/src/element/divider/_plugin.scss +69 -0
  100. package/src/element/divider/_variables.scss +16 -0
  101. package/src/element/file/_plugin.scss +2 -0
  102. package/src/element/file/_variables.scss +2 -6
  103. package/src/element/image/_index.scss +2 -0
  104. package/src/element/image/_plugin.scss +106 -0
  105. package/src/element/image/_variables.scss +53 -0
  106. package/src/element/progress/_plugin.scss +9 -28
  107. package/src/element/progress/_variables.scss +2 -8
  108. package/src/element/radio/_plugin.scss +4 -4
  109. package/src/element/radio/_variables.scss +2 -2
  110. package/src/element/range/_plugin.scss +9 -20
  111. package/src/element/range/_variables.scss +7 -1
  112. package/src/element/select/_plugin.scss +3 -4
  113. package/src/element/select/_variables.scss +2 -6
  114. package/src/element/spinner/_index.scss +2 -0
  115. package/src/element/spinner/_plugin.scss +78 -0
  116. package/src/element/spinner/_variables.scss +22 -0
  117. package/src/element/switch/_plugin.scss +6 -10
  118. package/src/element/switch/_variables.scss +2 -10
  119. package/src/element/text-input/_plugin.scss +3 -1
  120. package/src/element/text-input/_variables.scss +5 -5
  121. package/src/element/textarea/_plugin.scss +3 -1
  122. package/src/element/textarea/_variables.scss +2 -2
  123. package/src/helper/_border.scss +43 -0
  124. package/src/helper/_color.scss +29 -0
  125. package/src/helper/{_controls.scss → _controls-internal.scss} +21 -0
  126. package/src/helper/_flex.scss +89 -0
  127. package/src/helper/_font-size.scss +22 -0
  128. package/src/helper/_index.scss +18 -1
  129. package/src/helper/_interactions.scss +41 -0
  130. package/src/helper/_line-height.scss +22 -0
  131. package/src/helper/_object-fit.scss +15 -0
  132. package/src/helper/_overflow.scss +28 -0
  133. package/src/helper/_position.scss +47 -0
  134. package/src/helper/_ratio.scss +35 -0
  135. package/src/helper/_shadow.scss +31 -0
  136. package/src/helper/_sizing.scss +65 -0
  137. package/src/helper/_spacing.scss +95 -0
  138. package/src/helper/_stack.scss +24 -0
  139. package/src/helper/_state.scss +2 -17
  140. package/src/helper/_text.scss +92 -0
  141. package/src/helper/_tooltip.scss +100 -0
  142. package/src/helper/_visibility.scss +80 -0
  143. package/src/layout/_index.scss +2 -0
  144. package/src/layout/container/_plugin.scss +2 -0
  145. package/src/layout/container/_variables.scss +2 -0
  146. package/src/layout/flex/_plugin.scss +2 -1
  147. package/src/layout/flex/_variables.scss +2 -2
  148. package/src/layout/footer/_index.scss +2 -0
  149. package/src/layout/footer/_plugin.scss +24 -0
  150. package/src/layout/footer/_variables.scss +11 -0
  151. package/src/layout/grid/_plugin.scss +2 -0
  152. package/src/layout/grid/_variables.scss +20 -16
  153. package/src/layout/hero/_index.scss +2 -0
  154. package/src/layout/hero/_plugin.scss +54 -0
  155. package/src/layout/hero/_variables.scss +23 -0
  156. package/src/module/_index.scss +7 -0
  157. package/src/module/alert/_plugin.scss +6 -1
  158. package/src/module/alert/_variables.scss +7 -0
  159. package/src/module/breadcrumb/_index.scss +2 -0
  160. package/src/module/breadcrumb/_plugin.scss +73 -0
  161. package/src/module/breadcrumb/_variables.scss +27 -0
  162. package/src/module/buttons/_index.scss +2 -0
  163. package/src/module/buttons/_plugin.scss +67 -0
  164. package/src/module/buttons/_variables.scss +10 -0
  165. package/src/module/card/_plugin.scss +96 -2
  166. package/src/module/card/_variables.scss +39 -0
  167. package/src/module/dropdown/_index.scss +2 -0
  168. package/src/module/dropdown/_plugin.scss +155 -0
  169. package/src/module/dropdown/_variables.scss +50 -0
  170. package/src/module/field/_plugin.scss +2 -0
  171. package/src/module/modal/_plugin.scss +2 -0
  172. package/src/module/navbar/_plugin.scss +4 -1
  173. package/src/module/navbar/_variables.scss +6 -2
  174. package/src/module/pagination/_index.scss +2 -0
  175. package/src/module/pagination/_plugin.scss +276 -0
  176. package/src/module/pagination/_variables.scss +64 -0
  177. package/src/module/popover/_index.scss +2 -0
  178. package/src/module/popover/_plugin.scss +183 -0
  179. package/src/module/popover/_variables.scss +44 -0
  180. package/src/module/section/_index.scss +2 -0
  181. package/src/module/section/_plugin.scss +47 -0
  182. package/src/module/section/_variables.scss +24 -0
  183. package/src/module/tabs/_plugin.scss +3 -1
  184. package/src/module/toast/_index.scss +2 -0
  185. package/src/module/toast/_plugin.scss +184 -0
  186. package/src/module/toast/_variables.scss +56 -0
  187. package/src/typography/_index.scss +4 -0
  188. package/src/typography/base/_plugin.scss +2 -0
  189. package/src/typography/base/_variables.scss +4 -3
  190. package/src/typography/blockquote/_index.scss +2 -0
  191. package/src/typography/blockquote/_plugin.scss +22 -0
  192. package/src/typography/blockquote/_variables.scss +13 -0
  193. package/src/typography/content/_plugin.scss +2 -0
  194. package/src/typography/content/_variables.scss +2 -0
  195. package/src/typography/figure/_index.scss +2 -0
  196. package/src/typography/figure/_plugin.scss +29 -0
  197. package/src/typography/figure/_variables.scss +13 -0
  198. package/src/typography/lead/_index.scss +2 -0
  199. package/src/typography/lead/_plugin.scss +12 -0
  200. package/src/typography/lead/_variables.scss +6 -0
  201. package/src/typography/link/_mixins.scss +2 -0
  202. package/src/typography/link/_plugin.scss +2 -0
  203. package/src/typography/link/_variables.scss +2 -0
  204. package/src/typography/list/_index.scss +2 -0
  205. package/src/typography/list/_plugin.scss +18 -0
  206. package/src/typography/list/_variables.scss +6 -0
  207. package/src/typography/table/_plugin.scss +2 -0
  208. package/src/typography/table/_variables.scss +2 -0
  209. package/src/typography/title/_plugin.scss +2 -0
  210. package/src/typography/title/_variables.scss +2 -0
  211. package/src/variables/_color.scss +20 -12
  212. package/src/variables/_feature.scss +36 -0
  213. package/src/variables/_global.scss +8 -0
  214. package/src/variables/_selector.scss +1 -0
  215. package/dist/tokens/dark.json +0 -85
  216. package/dist/tokens/default.json +0 -85
  217. package/dist/tokens/high-contrast.json +0 -85
@@ -0,0 +1,177 @@
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
+ .w-25 {
116
+ width: 25% !important;
117
+ }
118
+
119
+ .w-50 {
120
+ width: 50% !important;
121
+ }
122
+
123
+ .w-75 {
124
+ width: 75% !important;
125
+ }
126
+
127
+ .w-100 {
128
+ width: 100% !important;
129
+ }
130
+
131
+ .w-auto {
132
+ width: auto !important;
133
+ }
134
+
135
+ .h-25 {
136
+ height: 25% !important;
137
+ }
138
+
139
+ .h-50 {
140
+ height: 50% !important;
141
+ }
142
+
143
+ .h-75 {
144
+ height: 75% !important;
145
+ }
146
+
147
+ .h-100 {
148
+ height: 100% !important;
149
+ }
150
+
151
+ .h-auto {
152
+ height: auto !important;
153
+ }
154
+
155
+ .is-fullwidth {
156
+ width: 100% !important;
157
+ }
158
+
159
+ .is-fullheight {
160
+ height: 100% !important;
161
+ }
162
+
163
+ .mw-100 {
164
+ max-width: 100% !important;
165
+ }
166
+
167
+ .mh-100 {
168
+ max-height: 100% !important;
169
+ }
170
+
171
+ .min-vw-100 {
172
+ min-width: 100vw !important;
173
+ }
174
+
175
+ .min-vh-100 {
176
+ min-height: 100vh !important;
177
+ }
@@ -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}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.is-fullwidth{width:100%!important}.is-fullheight{height:100%!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}
@@ -0,0 +1,563 @@
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
+ .m-0 {
116
+ margin: 0 !important;
117
+ }
118
+
119
+ .mt-0 {
120
+ margin-block-start: 0 !important;
121
+ }
122
+
123
+ .mb-0 {
124
+ margin-block-end: 0 !important;
125
+ }
126
+
127
+ .ms-0 {
128
+ margin-inline-start: 0 !important;
129
+ }
130
+
131
+ .me-0 {
132
+ margin-inline-end: 0 !important;
133
+ }
134
+
135
+ .mx-0 {
136
+ margin-inline-start: 0 !important;
137
+ margin-inline-end: 0 !important;
138
+ }
139
+
140
+ .my-0 {
141
+ margin-block-start: 0 !important;
142
+ margin-block-end: 0 !important;
143
+ }
144
+
145
+ .m-1 {
146
+ margin: 0.25rem !important;
147
+ }
148
+
149
+ .mt-1 {
150
+ margin-block-start: 0.25rem !important;
151
+ }
152
+
153
+ .mb-1 {
154
+ margin-block-end: 0.25rem !important;
155
+ }
156
+
157
+ .ms-1 {
158
+ margin-inline-start: 0.25rem !important;
159
+ }
160
+
161
+ .me-1 {
162
+ margin-inline-end: 0.25rem !important;
163
+ }
164
+
165
+ .mx-1 {
166
+ margin-inline-start: 0.25rem !important;
167
+ margin-inline-end: 0.25rem !important;
168
+ }
169
+
170
+ .my-1 {
171
+ margin-block-start: 0.25rem !important;
172
+ margin-block-end: 0.25rem !important;
173
+ }
174
+
175
+ .m-2 {
176
+ margin: 0.5rem !important;
177
+ }
178
+
179
+ .mt-2 {
180
+ margin-block-start: 0.5rem !important;
181
+ }
182
+
183
+ .mb-2 {
184
+ margin-block-end: 0.5rem !important;
185
+ }
186
+
187
+ .ms-2 {
188
+ margin-inline-start: 0.5rem !important;
189
+ }
190
+
191
+ .me-2 {
192
+ margin-inline-end: 0.5rem !important;
193
+ }
194
+
195
+ .mx-2 {
196
+ margin-inline-start: 0.5rem !important;
197
+ margin-inline-end: 0.5rem !important;
198
+ }
199
+
200
+ .my-2 {
201
+ margin-block-start: 0.5rem !important;
202
+ margin-block-end: 0.5rem !important;
203
+ }
204
+
205
+ .m-3 {
206
+ margin: 0.75rem !important;
207
+ }
208
+
209
+ .mt-3 {
210
+ margin-block-start: 0.75rem !important;
211
+ }
212
+
213
+ .mb-3 {
214
+ margin-block-end: 0.75rem !important;
215
+ }
216
+
217
+ .ms-3 {
218
+ margin-inline-start: 0.75rem !important;
219
+ }
220
+
221
+ .me-3 {
222
+ margin-inline-end: 0.75rem !important;
223
+ }
224
+
225
+ .mx-3 {
226
+ margin-inline-start: 0.75rem !important;
227
+ margin-inline-end: 0.75rem !important;
228
+ }
229
+
230
+ .my-3 {
231
+ margin-block-start: 0.75rem !important;
232
+ margin-block-end: 0.75rem !important;
233
+ }
234
+
235
+ .m-4 {
236
+ margin: 1rem !important;
237
+ }
238
+
239
+ .mt-4 {
240
+ margin-block-start: 1rem !important;
241
+ }
242
+
243
+ .mb-4 {
244
+ margin-block-end: 1rem !important;
245
+ }
246
+
247
+ .ms-4 {
248
+ margin-inline-start: 1rem !important;
249
+ }
250
+
251
+ .me-4 {
252
+ margin-inline-end: 1rem !important;
253
+ }
254
+
255
+ .mx-4 {
256
+ margin-inline-start: 1rem !important;
257
+ margin-inline-end: 1rem !important;
258
+ }
259
+
260
+ .my-4 {
261
+ margin-block-start: 1rem !important;
262
+ margin-block-end: 1rem !important;
263
+ }
264
+
265
+ .m-5 {
266
+ margin: 1.5rem !important;
267
+ }
268
+
269
+ .mt-5 {
270
+ margin-block-start: 1.5rem !important;
271
+ }
272
+
273
+ .mb-5 {
274
+ margin-block-end: 1.5rem !important;
275
+ }
276
+
277
+ .ms-5 {
278
+ margin-inline-start: 1.5rem !important;
279
+ }
280
+
281
+ .me-5 {
282
+ margin-inline-end: 1.5rem !important;
283
+ }
284
+
285
+ .mx-5 {
286
+ margin-inline-start: 1.5rem !important;
287
+ margin-inline-end: 1.5rem !important;
288
+ }
289
+
290
+ .my-5 {
291
+ margin-block-start: 1.5rem !important;
292
+ margin-block-end: 1.5rem !important;
293
+ }
294
+
295
+ .m-6 {
296
+ margin: 3rem !important;
297
+ }
298
+
299
+ .mt-6 {
300
+ margin-block-start: 3rem !important;
301
+ }
302
+
303
+ .mb-6 {
304
+ margin-block-end: 3rem !important;
305
+ }
306
+
307
+ .ms-6 {
308
+ margin-inline-start: 3rem !important;
309
+ }
310
+
311
+ .me-6 {
312
+ margin-inline-end: 3rem !important;
313
+ }
314
+
315
+ .mx-6 {
316
+ margin-inline-start: 3rem !important;
317
+ margin-inline-end: 3rem !important;
318
+ }
319
+
320
+ .my-6 {
321
+ margin-block-start: 3rem !important;
322
+ margin-block-end: 3rem !important;
323
+ }
324
+
325
+ .m-auto {
326
+ margin: auto !important;
327
+ }
328
+
329
+ .mt-auto {
330
+ margin-block-start: auto !important;
331
+ }
332
+
333
+ .mb-auto {
334
+ margin-block-end: auto !important;
335
+ }
336
+
337
+ .ms-auto {
338
+ margin-inline-start: auto !important;
339
+ }
340
+
341
+ .me-auto {
342
+ margin-inline-end: auto !important;
343
+ }
344
+
345
+ .mx-auto {
346
+ margin-inline-start: auto !important;
347
+ margin-inline-end: auto !important;
348
+ }
349
+
350
+ .my-auto {
351
+ margin-block-start: auto !important;
352
+ margin-block-end: auto !important;
353
+ }
354
+
355
+ .p-0 {
356
+ padding: 0 !important;
357
+ }
358
+
359
+ .pt-0 {
360
+ padding-block-start: 0 !important;
361
+ }
362
+
363
+ .pb-0 {
364
+ padding-block-end: 0 !important;
365
+ }
366
+
367
+ .ps-0 {
368
+ padding-inline-start: 0 !important;
369
+ }
370
+
371
+ .pe-0 {
372
+ padding-inline-end: 0 !important;
373
+ }
374
+
375
+ .px-0 {
376
+ padding-inline-start: 0 !important;
377
+ padding-inline-end: 0 !important;
378
+ }
379
+
380
+ .py-0 {
381
+ padding-block-start: 0 !important;
382
+ padding-block-end: 0 !important;
383
+ }
384
+
385
+ .p-1 {
386
+ padding: 0.25rem !important;
387
+ }
388
+
389
+ .pt-1 {
390
+ padding-block-start: 0.25rem !important;
391
+ }
392
+
393
+ .pb-1 {
394
+ padding-block-end: 0.25rem !important;
395
+ }
396
+
397
+ .ps-1 {
398
+ padding-inline-start: 0.25rem !important;
399
+ }
400
+
401
+ .pe-1 {
402
+ padding-inline-end: 0.25rem !important;
403
+ }
404
+
405
+ .px-1 {
406
+ padding-inline-start: 0.25rem !important;
407
+ padding-inline-end: 0.25rem !important;
408
+ }
409
+
410
+ .py-1 {
411
+ padding-block-start: 0.25rem !important;
412
+ padding-block-end: 0.25rem !important;
413
+ }
414
+
415
+ .p-2 {
416
+ padding: 0.5rem !important;
417
+ }
418
+
419
+ .pt-2 {
420
+ padding-block-start: 0.5rem !important;
421
+ }
422
+
423
+ .pb-2 {
424
+ padding-block-end: 0.5rem !important;
425
+ }
426
+
427
+ .ps-2 {
428
+ padding-inline-start: 0.5rem !important;
429
+ }
430
+
431
+ .pe-2 {
432
+ padding-inline-end: 0.5rem !important;
433
+ }
434
+
435
+ .px-2 {
436
+ padding-inline-start: 0.5rem !important;
437
+ padding-inline-end: 0.5rem !important;
438
+ }
439
+
440
+ .py-2 {
441
+ padding-block-start: 0.5rem !important;
442
+ padding-block-end: 0.5rem !important;
443
+ }
444
+
445
+ .p-3 {
446
+ padding: 0.75rem !important;
447
+ }
448
+
449
+ .pt-3 {
450
+ padding-block-start: 0.75rem !important;
451
+ }
452
+
453
+ .pb-3 {
454
+ padding-block-end: 0.75rem !important;
455
+ }
456
+
457
+ .ps-3 {
458
+ padding-inline-start: 0.75rem !important;
459
+ }
460
+
461
+ .pe-3 {
462
+ padding-inline-end: 0.75rem !important;
463
+ }
464
+
465
+ .px-3 {
466
+ padding-inline-start: 0.75rem !important;
467
+ padding-inline-end: 0.75rem !important;
468
+ }
469
+
470
+ .py-3 {
471
+ padding-block-start: 0.75rem !important;
472
+ padding-block-end: 0.75rem !important;
473
+ }
474
+
475
+ .p-4 {
476
+ padding: 1rem !important;
477
+ }
478
+
479
+ .pt-4 {
480
+ padding-block-start: 1rem !important;
481
+ }
482
+
483
+ .pb-4 {
484
+ padding-block-end: 1rem !important;
485
+ }
486
+
487
+ .ps-4 {
488
+ padding-inline-start: 1rem !important;
489
+ }
490
+
491
+ .pe-4 {
492
+ padding-inline-end: 1rem !important;
493
+ }
494
+
495
+ .px-4 {
496
+ padding-inline-start: 1rem !important;
497
+ padding-inline-end: 1rem !important;
498
+ }
499
+
500
+ .py-4 {
501
+ padding-block-start: 1rem !important;
502
+ padding-block-end: 1rem !important;
503
+ }
504
+
505
+ .p-5 {
506
+ padding: 1.5rem !important;
507
+ }
508
+
509
+ .pt-5 {
510
+ padding-block-start: 1.5rem !important;
511
+ }
512
+
513
+ .pb-5 {
514
+ padding-block-end: 1.5rem !important;
515
+ }
516
+
517
+ .ps-5 {
518
+ padding-inline-start: 1.5rem !important;
519
+ }
520
+
521
+ .pe-5 {
522
+ padding-inline-end: 1.5rem !important;
523
+ }
524
+
525
+ .px-5 {
526
+ padding-inline-start: 1.5rem !important;
527
+ padding-inline-end: 1.5rem !important;
528
+ }
529
+
530
+ .py-5 {
531
+ padding-block-start: 1.5rem !important;
532
+ padding-block-end: 1.5rem !important;
533
+ }
534
+
535
+ .p-6 {
536
+ padding: 3rem !important;
537
+ }
538
+
539
+ .pt-6 {
540
+ padding-block-start: 3rem !important;
541
+ }
542
+
543
+ .pb-6 {
544
+ padding-block-end: 3rem !important;
545
+ }
546
+
547
+ .ps-6 {
548
+ padding-inline-start: 3rem !important;
549
+ }
550
+
551
+ .pe-6 {
552
+ padding-inline-end: 3rem !important;
553
+ }
554
+
555
+ .px-6 {
556
+ padding-inline-start: 3rem !important;
557
+ padding-inline-end: 3rem !important;
558
+ }
559
+
560
+ .py-6 {
561
+ padding-block-start: 3rem !important;
562
+ padding-block-end: 3rem !important;
563
+ }