@clusterenvision/ui-scss 1.94.3
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/LICENSE +21 -0
- package/README.md +152 -0
- package/dist/ce-ui-min.css +2951 -0
- package/dist/ce-ui-min.css.map +1 -0
- package/dist/ce-ui.css +4894 -0
- package/dist/ce-ui.css.map +1 -0
- package/dist/components/advanced/calendar.css +37 -0
- package/dist/components/advanced/carousel.css +59 -0
- package/dist/components/advanced/chat.css +29 -0
- package/dist/components/advanced/code-block.css +16 -0
- package/dist/components/advanced/editor.css +122 -0
- package/dist/components/advanced/rating.css +19 -0
- package/dist/components/advanced/steps.css +46 -0
- package/dist/components/advanced/timeline.css +32 -0
- package/dist/components/buttons/button-group.css +28 -0
- package/dist/components/buttons/button.css +305 -0
- package/dist/components/buttons/icon-button.css +32 -0
- package/dist/components/charts/chart-types.css +36 -0
- package/dist/components/containers/accordion.css +65 -0
- package/dist/components/containers/card.css +60 -0
- package/dist/components/containers/drawer.css +33 -0
- package/dist/components/containers/modal.css +61 -0
- package/dist/components/containers/panel.css +27 -0
- package/dist/components/containers/toast.css +38 -0
- package/dist/components/content/avatar.css +54 -0
- package/dist/components/content/badge.css +44 -0
- package/dist/components/content/chip.css +234 -0
- package/dist/components/content/divider.css +27 -0
- package/dist/components/content/image.css +23 -0
- package/dist/components/feedback/alert.css +50 -0
- package/dist/components/feedback/message.css +18 -0
- package/dist/components/feedback/progress-bar.css +22 -0
- package/dist/components/feedback/skeleton.css +35 -0
- package/dist/components/feedback/snackbar.css +30 -0
- package/dist/components/form-controls/checkbox.css +183 -0
- package/dist/components/form-controls/date-picker.css +26 -0
- package/dist/components/form-controls/file-upload.css +48 -0
- package/dist/components/form-controls/form-group.css +19 -0
- package/dist/components/form-controls/input.css +96 -0
- package/dist/components/form-controls/radio.css +20 -0
- package/dist/components/form-controls/range.css +42 -0
- package/dist/components/form-controls/select.css +243 -0
- package/dist/components/form-controls/textarea.css +28 -0
- package/dist/components/form-controls/toggle.css +38 -0
- package/dist/components/navigation/breadcrumbs.css +33 -0
- package/dist/components/navigation/menu.css +43 -0
- package/dist/components/navigation/navbar.css +64 -0
- package/dist/components/navigation/pagination.css +45 -0
- package/dist/components/navigation/sidebar.css +35 -0
- package/dist/components/navigation/tabs.css +25 -0
- package/dist/components/overlays/backdrop.css +6 -0
- package/dist/components/overlays/dropdown.css +77 -0
- package/dist/components/overlays/loader.css +28 -0
- package/dist/components/overlays/popover.css +54 -0
- package/dist/components/overlays/tooltip.css +37 -0
- package/dist/components/specialty/ce-atm-card.css +204 -0
- package/dist/components/tables-lists/data-table.css +48 -0
- package/dist/components/tables-lists/list.css +22 -0
- package/dist/components/tables-lists/table.css +40 -0
- package/dist/components/tables-lists/tree-view.css +37 -0
- package/dist/themes/core/package.json +12 -0
- package/dist/themes/core/tokens.css +120 -0
- package/dist/themes/core/tokens.d.ts +69 -0
- package/dist/themes/core/tokens.json +136 -0
- package/dist/themes/premium/package.json +12 -0
- package/dist/themes/premium/tokens.css +120 -0
- package/dist/themes/premium/tokens.d.ts +69 -0
- package/dist/themes/premium/tokens.json +136 -0
- package/dist/tokens/tokens.css +120 -0
- package/dist/tokens/tokens.d.ts +69 -0
- package/dist/tokens/tokens.json +133 -0
- package/package.json +61 -0
- package/src/abstracts/_functions.scss +34 -0
- package/src/abstracts/_mixins.scss +162 -0
- package/src/abstracts/_placeholders.scss +18 -0
- package/src/abstracts/_variables.scss +413 -0
- package/src/abstracts/_z-index.scss +9 -0
- package/src/accessibility/_focus-ring.scss +11 -0
- package/src/accessibility/_theme-switcher.scss +41 -0
- package/src/base/_animations.scss +32 -0
- package/src/base/_forms.scss +62 -0
- package/src/base/_reset.scss +102 -0
- package/src/base/_theme-base.scss +162 -0
- package/src/base/_typography.scss +38 -0
- package/src/components/advanced/_calendar.scss +47 -0
- package/src/components/advanced/_carousel.scss +87 -0
- package/src/components/advanced/_chat.scss +37 -0
- package/src/components/advanced/_code-block.scss +22 -0
- package/src/components/advanced/_editor.scss +156 -0
- package/src/components/advanced/_modal.scss +96 -0
- package/src/components/advanced/_notification-center.scss +172 -0
- package/src/components/advanced/_popover.scss +68 -0
- package/src/components/advanced/_rating.scss +22 -0
- package/src/components/advanced/_stepper.scss +135 -0
- package/src/components/advanced/_steps.scss +57 -0
- package/src/components/advanced/_timeline.scss +47 -0
- package/src/components/advanced/_wizard.scss +132 -0
- package/src/components/buttons/_button-group.scss +40 -0
- package/src/components/buttons/_button.scss +296 -0
- package/src/components/buttons/_icon-button.scss +42 -0
- package/src/components/charts/_chart-types.scss +74 -0
- package/src/components/containers/_accordion.scss +65 -0
- package/src/components/containers/_card.scss +65 -0
- package/src/components/containers/_drawer.scss +48 -0
- package/src/components/containers/_modal.scss +78 -0
- package/src/components/containers/_panel.scss +37 -0
- package/src/components/containers/_toast.scss +40 -0
- package/src/components/content/_avatar.scss +56 -0
- package/src/components/content/_badge.scss +42 -0
- package/src/components/content/_calendar.scss +147 -0
- package/src/components/content/_carousel.scss +112 -0
- package/src/components/content/_chip.scss +246 -0
- package/src/components/content/_divider.scss +49 -0
- package/src/components/content/_image.scss +32 -0
- package/src/components/content/_rating.scss +60 -0
- package/src/components/content/_rich-text-editor.scss +153 -0
- package/src/components/content/_timeline-advanced.scss +138 -0
- package/src/components/content/_timeline.scss +86 -0
- package/src/components/feedback/_advanced-notification.scss +156 -0
- package/src/components/feedback/_alert.scss +86 -0
- package/src/components/feedback/_message.scss +26 -0
- package/src/components/feedback/_notification-center.scss +118 -0
- package/src/components/feedback/_progress-bar.scss +48 -0
- package/src/components/feedback/_skeleton.scss +47 -0
- package/src/components/feedback/_snackbar.scss +38 -0
- package/src/components/feedback/_spinner.scss +211 -0
- package/src/components/feedback/_toast-queue.scss +164 -0
- package/src/components/form-controls/_autocomplete.scss +80 -0
- package/src/components/form-controls/_checkbox.scss +202 -0
- package/src/components/form-controls/_date-picker.scss +50 -0
- package/src/components/form-controls/_file-upload.scss +61 -0
- package/src/components/form-controls/_form-group.scss +26 -0
- package/src/components/form-controls/_input.scss +139 -0
- package/src/components/form-controls/_multi-select.scss +175 -0
- package/src/components/form-controls/_radio.scss +27 -0
- package/src/components/form-controls/_range.scss +54 -0
- package/src/components/form-controls/_select.scss +242 -0
- package/src/components/form-controls/_textarea.scss +45 -0
- package/src/components/form-controls/_toggle.scss +47 -0
- package/src/components/navigation/_breadcrumbs.scss +41 -0
- package/src/components/navigation/_menu.scss +75 -0
- package/src/components/navigation/_navbar.scss +79 -0
- package/src/components/navigation/_pagination.scss +85 -0
- package/src/components/navigation/_sidebar.scss +44 -0
- package/src/components/navigation/_stepper.scss +115 -0
- package/src/components/navigation/_tabs.scss +50 -0
- package/src/components/navigation/_tree-view.scss +95 -0
- package/src/components/navigation/_wizard.scss +132 -0
- package/src/components/overlays/_backdrop.scss +10 -0
- package/src/components/overlays/_dropdown.scss +110 -0
- package/src/components/overlays/_loader.scss +32 -0
- package/src/components/overlays/_popover.scss +64 -0
- package/src/components/overlays/_tooltip.scss +64 -0
- package/src/components/specialty/_ce-atm-card.scss +255 -0
- package/src/components/tables/_data-grid.scss +92 -0
- package/src/components/tables/_filter-grid.scss +29 -0
- package/src/components/tables-lists/_data-table.scss +63 -0
- package/src/components/tables-lists/_list.scss +30 -0
- package/src/components/tables-lists/_table.scss +79 -0
- package/src/components/tables-lists/_tree-view.scss +47 -0
- package/src/layout/_container.scss +20 -0
- package/src/layout/_footer.scss +41 -0
- package/src/layout/_grid.scss +23 -0
- package/src/layout/_header.scss +41 -0
- package/src/layout/_section.scss +26 -0
- package/src/layout/_sidebar.scss +39 -0
- package/src/layout/_stack.scss +23 -0
- package/src/main.css +3250 -0
- package/src/main.css.map +1 -0
- package/src/main.scss +158 -0
- package/src/minimal.scss +62 -0
- package/src/themes/_cool-slate.scss +11 -0
- package/src/themes/_dark.scss +11 -0
- package/src/themes/_default.scss +12 -0
- package/src/themes/_forest.scss +11 -0
- package/src/themes/_glassy-aero-windows.scss +9 -0
- package/src/themes/_glassy-amber.scss +21 -0
- package/src/themes/_glassy-aurora-sky.scss +9 -0
- package/src/themes/_glassy-blue.scss +10 -0
- package/src/themes/_glassy-cyan.scss +9 -0
- package/src/themes/_glassy-emerald-mist.scss +9 -0
- package/src/themes/_glassy-frosted-silver.scss +9 -0
- package/src/themes/_glassy-glass-white.scss +9 -0
- package/src/themes/_glassy-gold.scss +9 -0
- package/src/themes/_glassy-green.scss +10 -0
- package/src/themes/_glassy-ice-black.scss +13 -0
- package/src/themes/_glassy-mac-dark.scss +13 -0
- package/src/themes/_glassy-midnight-blue.scss +12 -0
- package/src/themes/_glassy-neon-cyber.scss +9 -0
- package/src/themes/_glassy-orange.scss +10 -0
- package/src/themes/_glassy-pink.scss +9 -0
- package/src/themes/_glassy-purple.scss +10 -0
- package/src/themes/_glassy-rose-gold.scss +9 -0
- package/src/themes/_glassy-sakura-glass.scss +9 -0
- package/src/themes/_glassy-silver.scss +9 -0
- package/src/themes/_glassy-teal.scss +9 -0
- package/src/themes/_high-contrast.scss +11 -0
- package/src/themes/_light.scss +10 -0
- package/src/themes/_mac.scss +10 -0
- package/src/themes/_minimal-mono.scss +11 -0
- package/src/themes/_mintwave.scss +9 -0
- package/src/themes/_neutral-light.scss +11 -0
- package/src/themes/_nordwave.scss +9 -0
- package/src/themes/_ocean.scss +9 -0
- package/src/themes/_orange.scss +9 -0
- package/src/themes/_purple.scss +9 -0
- package/src/themes/_red.scss +9 -0
- package/src/themes/_skyfade.scss +9 -0
- package/src/themes/_soft-pastel.scss +11 -0
- package/src/themes/_solarized.scss +9 -0
- package/src/themes/_standard-dark.scss +8 -0
- package/src/themes/_standard-default.scss +9 -0
- package/src/themes/_transparent.scss +9 -0
- package/src/themes/_true-dark.scss +11 -0
- package/src/themes/_warm-neutral.scss +11 -0
- package/src/themes.zip +0 -0
- package/src/tokens/tokens.json +133 -0
- package/src/utilities/_display.scss +11 -0
- package/src/utilities/_flex.scss +9 -0
- package/src/utilities/_position.scss +6 -0
- package/src/utilities/_screen-reader.scss +9 -0
- package/src/utilities/_spacing.scss +22 -0
- package/src/utilities/_text.scss +14 -0
- package/src/utilities/_visibility.scss +4 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-ocean, :root[data-ce-theme="ocean"], :root.theme-ocean {
|
|
4
|
+
--theme-bg: #{fn.color(ocean-light)};
|
|
5
|
+
--theme-fg: #{fn.color(ocean-deep)};
|
|
6
|
+
--theme-accent: #{fn.color(ocean-primary)};
|
|
7
|
+
--theme-muted: #{fn.color(ocean-muted)};
|
|
8
|
+
--theme-primary: #{fn.color(ocean-primary)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-orange, :root[data-ce-theme="orange"], :root.theme-orange {
|
|
4
|
+
--theme-bg: #{fn.color(orange-50)};
|
|
5
|
+
--theme-fg: #{fn.color(orange-900)};
|
|
6
|
+
--theme-accent: #{fn.color(orange)};
|
|
7
|
+
--theme-muted: #{fn.color(orange-300)};
|
|
8
|
+
--theme-primary: #{fn.color(ocean-primary)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-purple, :root[data-ce-theme="purple"], :root.theme-purple {
|
|
4
|
+
--theme-bg: #{fn.color(purple-50)};
|
|
5
|
+
--theme-fg: #{fn.color(purple-900)};
|
|
6
|
+
--theme-accent: #{fn.color(purple)};
|
|
7
|
+
--theme-muted: #{fn.color(purple-300)};
|
|
8
|
+
--theme-primary: #{fn.color(purple)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-red, :root[data-ce-theme="red"], :root.theme-red {
|
|
4
|
+
--theme-bg: #{fn.color(red-50)};
|
|
5
|
+
--theme-fg: #{fn.color(red-900)};
|
|
6
|
+
--theme-accent: #{fn.color(red)};
|
|
7
|
+
--theme-muted: #{fn.color(red-300)};
|
|
8
|
+
--theme-primary: #{fn.color(red)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-skyfade, :root[data-ce-theme="skyfade"], :root.theme-skyfade {
|
|
4
|
+
--theme-bg: #{fn.color(skyfade-bg)};
|
|
5
|
+
--theme-fg: #{fn.color(skyfade-fg)};
|
|
6
|
+
--theme-accent: #{fn.color(skyfade-primary)};
|
|
7
|
+
--theme-muted: #{fn.color(skyfade-muted)};
|
|
8
|
+
--theme-primary: #{fn.color(skyfade-primary)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
:root.theme-soft-pastel, :root[data-ce-theme="soft-pastel"], .theme-soft-pastel {
|
|
4
|
+
--theme-bg: #eefcf6;
|
|
5
|
+
--theme-surface: #ffffff;
|
|
6
|
+
--theme-fg: #0f172a;
|
|
7
|
+
--theme-muted: #6b7280;
|
|
8
|
+
--theme-primary: #10b981;
|
|
9
|
+
--theme-accent: #10b981;
|
|
10
|
+
--theme-font: 'Inter', system-ui, sans-serif;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-solarized, :root[data-ce-theme="solarized"], :root.theme-solarized {
|
|
4
|
+
--theme-bg: #{fn.color(solar-base3)};
|
|
5
|
+
--theme-fg: #{fn.color(solar-base00)};
|
|
6
|
+
--theme-accent: #{fn.color(solar-blue)};
|
|
7
|
+
--theme-muted: #{fn.color(solar-base1)};
|
|
8
|
+
--theme-primary: #{fn.color(solar-blue)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.theme-standard-default, :root[data-ce-theme="standard-default"], :root.theme-standard-default {
|
|
2
|
+
--theme-bg: #ffffff;
|
|
3
|
+
--theme-fg: #1a1a1a;
|
|
4
|
+
--theme-primary: #1a73e8;
|
|
5
|
+
--theme-accent: #4285f4;
|
|
6
|
+
--theme-muted: #9aa0a6;
|
|
7
|
+
--theme-radius: 8px;
|
|
8
|
+
--theme-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
.theme-transparent, :root[data-ce-theme="transparent"], :root.theme-transparent {
|
|
4
|
+
--theme-bg: transparent;
|
|
5
|
+
--theme-fg: #{fn.color(dark)};
|
|
6
|
+
--theme-accent: #{fn.color(primary)};
|
|
7
|
+
--theme-muted: rgba(0, 0, 0, 0.4);
|
|
8
|
+
--theme-primary: #{fn.color(primary)};
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
:root.theme-true-dark, :root[data-ce-theme="true-dark"], .theme-true-dark {
|
|
4
|
+
--theme-bg: #0b0b0f;
|
|
5
|
+
--theme-surface: #111827;
|
|
6
|
+
--theme-fg: #e5e7eb;
|
|
7
|
+
--theme-muted: #9ca3af;
|
|
8
|
+
--theme-primary: #22d3ee;
|
|
9
|
+
--theme-accent: #22d3ee;
|
|
10
|
+
--theme-font: 'Inter', system-ui, sans-serif;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@use "../abstracts/functions" as fn;
|
|
2
|
+
|
|
3
|
+
:root.theme-warm-neutral, :root[data-ce-theme="warm-neutral"], .theme-warm-neutral {
|
|
4
|
+
--theme-bg: #f7f4f1;
|
|
5
|
+
--theme-surface: #ffffff;
|
|
6
|
+
--theme-fg: #1f2933;
|
|
7
|
+
--theme-muted: #7b8794;
|
|
8
|
+
--theme-primary: #d97706;
|
|
9
|
+
--theme-accent: #d97706;
|
|
10
|
+
--theme-font: 'Inter', system-ui, sans-serif;
|
|
11
|
+
}
|
package/src/themes.zip
ADDED
|
Binary file
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"modes": {
|
|
4
|
+
"light": {
|
|
5
|
+
"color": {
|
|
6
|
+
"background": "#f8fafc",
|
|
7
|
+
"surface": "#ffffff",
|
|
8
|
+
"text": "#0f172a",
|
|
9
|
+
"textMuted": "#6b7280",
|
|
10
|
+
"primary": "#2563eb",
|
|
11
|
+
"accent": "#2563eb",
|
|
12
|
+
"border": "#e5e7eb",
|
|
13
|
+
"focusRing": "#2563eb",
|
|
14
|
+
"success": "#34a853",
|
|
15
|
+
"warning": "#f9ab00",
|
|
16
|
+
"danger": "#ea4335",
|
|
17
|
+
"info": "#4285f4"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"dark": {
|
|
21
|
+
"color": {
|
|
22
|
+
"background": "#202124",
|
|
23
|
+
"surface": "#111827",
|
|
24
|
+
"text": "#ffffff",
|
|
25
|
+
"textMuted": "#f8f9fa",
|
|
26
|
+
"primary": "#1a73e8",
|
|
27
|
+
"accent": "#1a73e8",
|
|
28
|
+
"border": "#2b2f36",
|
|
29
|
+
"focusRing": "#1a73e8",
|
|
30
|
+
"success": "#34a853",
|
|
31
|
+
"warning": "#f9ab00",
|
|
32
|
+
"danger": "#ea4335",
|
|
33
|
+
"info": "#4285f4"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"high-contrast": {
|
|
37
|
+
"color": {
|
|
38
|
+
"background": "#000000",
|
|
39
|
+
"surface": "#0f1115",
|
|
40
|
+
"text": "#ffffff",
|
|
41
|
+
"textMuted": "#cbd5e1",
|
|
42
|
+
"primary": "#1d4ed8",
|
|
43
|
+
"accent": "#1d4ed8",
|
|
44
|
+
"border": "#ffffff",
|
|
45
|
+
"focusRing": "#ffffff",
|
|
46
|
+
"success": "#34a853",
|
|
47
|
+
"warning": "#f9ab00",
|
|
48
|
+
"danger": "#ea4335",
|
|
49
|
+
"info": "#4285f4"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"tokens": {
|
|
54
|
+
"spacing": {
|
|
55
|
+
"0": "0rem",
|
|
56
|
+
"4": "0.25rem",
|
|
57
|
+
"8": "0.5rem",
|
|
58
|
+
"12": "0.75rem",
|
|
59
|
+
"16": "1rem",
|
|
60
|
+
"24": "1.5rem",
|
|
61
|
+
"32": "2rem",
|
|
62
|
+
"48": "3rem",
|
|
63
|
+
"64": "4rem"
|
|
64
|
+
},
|
|
65
|
+
"radius": {
|
|
66
|
+
"none": "0",
|
|
67
|
+
"xs": "2px",
|
|
68
|
+
"sm": "4px",
|
|
69
|
+
"md": "8px",
|
|
70
|
+
"lg": "12px",
|
|
71
|
+
"xl": "16px",
|
|
72
|
+
"pill": "10px",
|
|
73
|
+
"circle": "50%"
|
|
74
|
+
},
|
|
75
|
+
"typography": {
|
|
76
|
+
"fontFamily": "'Inter', system-ui, sans-serif",
|
|
77
|
+
"fontSize": {
|
|
78
|
+
"xs": "0.75rem",
|
|
79
|
+
"sm": "0.875rem",
|
|
80
|
+
"md": "1rem",
|
|
81
|
+
"lg": "1.125rem",
|
|
82
|
+
"xl": "1.25rem",
|
|
83
|
+
"xxl": "1.5rem"
|
|
84
|
+
},
|
|
85
|
+
"fontWeight": {
|
|
86
|
+
"regular": "400",
|
|
87
|
+
"medium": "500",
|
|
88
|
+
"bold": "600"
|
|
89
|
+
},
|
|
90
|
+
"lineHeight": {
|
|
91
|
+
"tight": "1.2",
|
|
92
|
+
"normal": "1.5",
|
|
93
|
+
"relaxed": "1.7"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"density": {
|
|
97
|
+
"comfortable": "1",
|
|
98
|
+
"compact": "0.85"
|
|
99
|
+
},
|
|
100
|
+
"component": {
|
|
101
|
+
"button": {
|
|
102
|
+
"background": "var(--ce-color-primary)",
|
|
103
|
+
"foreground": "#ffffff",
|
|
104
|
+
"border": "var(--ce-color-primary)",
|
|
105
|
+
"radius": "var(--ce-radius-sm)",
|
|
106
|
+
"paddingY": "var(--ce-space-8)",
|
|
107
|
+
"paddingX": "var(--ce-space-16)"
|
|
108
|
+
},
|
|
109
|
+
"input": {
|
|
110
|
+
"background": "var(--ce-color-surface)",
|
|
111
|
+
"foreground": "var(--ce-color-text)",
|
|
112
|
+
"border": "var(--ce-color-border)",
|
|
113
|
+
"radius": "var(--ce-radius-sm)",
|
|
114
|
+
"paddingY": "var(--ce-space-8)",
|
|
115
|
+
"paddingX": "var(--ce-space-12)"
|
|
116
|
+
},
|
|
117
|
+
"card": {
|
|
118
|
+
"background": "var(--ce-color-surface)",
|
|
119
|
+
"foreground": "var(--ce-color-text)",
|
|
120
|
+
"border": "var(--ce-color-border)",
|
|
121
|
+
"radius": "var(--ce-radius-md)",
|
|
122
|
+
"shadow": "0 8px 24px rgba(0, 0, 0, 0.08)"
|
|
123
|
+
},
|
|
124
|
+
"tooltip": {
|
|
125
|
+
"background": "var(--ce-color-text)",
|
|
126
|
+
"foreground": "var(--ce-color-surface)",
|
|
127
|
+
"radius": "var(--ce-radius-sm)",
|
|
128
|
+
"paddingY": "var(--ce-space-4)",
|
|
129
|
+
"paddingX": "var(--ce-space-8)"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// utilities/_display.scss
|
|
2
|
+
|
|
3
|
+
.block { display: block !important; }
|
|
4
|
+
.inline { display: inline !important; }
|
|
5
|
+
.inline-block { display: inline-block !important; }
|
|
6
|
+
.none { display: none !important; }
|
|
7
|
+
|
|
8
|
+
@media (min-width: 768px) {
|
|
9
|
+
.sm-block { display: block !important; }
|
|
10
|
+
.sm-none { display: none !important; }
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// utilities/_flex.scss
|
|
2
|
+
|
|
3
|
+
.flex { display: flex !important; }
|
|
4
|
+
.flex-column { flex-direction: column !important; }
|
|
5
|
+
.flex-row { flex-direction: row !important; }
|
|
6
|
+
.flex-center { justify-content: center; align-items: center; }
|
|
7
|
+
.justify-between { justify-content: space-between !important; }
|
|
8
|
+
.align-center { align-items: center !important; }
|
|
9
|
+
.wrap { flex-wrap: wrap !important; }
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// utilities/_spacing.scss
|
|
2
|
+
@use "../abstracts/variables" as vars;
|
|
3
|
+
|
|
4
|
+
@each $name, $value in vars.$spacing {
|
|
5
|
+
.m-#{$name} { margin: $value !important; }
|
|
6
|
+
.mt-#{$name} { margin-top: $value !important; }
|
|
7
|
+
.mb-#{$name} { margin-bottom: $value !important; }
|
|
8
|
+
.ml-#{$name} { margin-left: $value !important; }
|
|
9
|
+
.mr-#{$name} { margin-right: $value !important; }
|
|
10
|
+
.ms-#{$name} { margin-inline-start: $value !important; }
|
|
11
|
+
.me-#{$name} { margin-inline-end: $value !important; }
|
|
12
|
+
.mx-#{$name} { margin-inline: $value !important; }
|
|
13
|
+
|
|
14
|
+
.p-#{$name} { padding: $value !important; }
|
|
15
|
+
.pt-#{$name} { padding-top: $value !important; }
|
|
16
|
+
.pb-#{$name} { padding-bottom: $value !important; }
|
|
17
|
+
.pl-#{$name} { padding-left: $value !important; }
|
|
18
|
+
.pr-#{$name} { padding-right: $value !important; }
|
|
19
|
+
.ps-#{$name} { padding-inline-start: $value !important; }
|
|
20
|
+
.pe-#{$name} { padding-inline-end: $value !important; }
|
|
21
|
+
.px-#{$name} { padding-inline: $value !important; }
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// utilities/_text.scss
|
|
2
|
+
@use "../abstracts/functions" as fn;
|
|
3
|
+
|
|
4
|
+
.text-left { text-align: left !important; }
|
|
5
|
+
.text-center { text-align: center !important; }
|
|
6
|
+
.text-right { text-align: right !important; }
|
|
7
|
+
|
|
8
|
+
.text-primary { color: var(--theme-primary, #{fn.color(primary)}) !important; }
|
|
9
|
+
.text-success { color: var(--theme-success, #{fn.color(success)}) !important; }
|
|
10
|
+
.text-danger { color: var(--theme-danger, #{fn.color(danger)}) !important; }
|
|
11
|
+
.text-muted { color: var(--theme-muted, #{fn.color(muted)}) !important; }
|
|
12
|
+
|
|
13
|
+
.text-uppercase { text-transform: uppercase !important; }
|
|
14
|
+
.text-lowercase { text-transform: lowercase !important; }
|