@for-the-people-initiative/design-system 1.3.1
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 +80 -0
- package/dist/css/theme-dark.css +7 -0
- package/dist/css/tokens.css +2315 -0
- package/dist/scss/_tokens.scss +2521 -0
- package/dist/ts/tokens.ts +2441 -0
- package/package.json +80 -0
- package/src/components/Accordion/Accordion.scss +118 -0
- package/src/components/Accordion/Accordion.vue +105 -0
- package/src/components/Accordion/AccordionTab.vue +79 -0
- package/src/components/Alert/Alert.scss +109 -0
- package/src/components/Alert/Alert.vue +79 -0
- package/src/components/AppBar/AppBar.scss +73 -0
- package/src/components/AppBar/AppBar.vue +49 -0
- package/src/components/AtmosphericBackground/AtmosphericBackground.vue +198 -0
- package/src/components/AutoComplete/AutoComplete.scss +282 -0
- package/src/components/AutoComplete/AutoComplete.vue +398 -0
- package/src/components/Avatar/Avatar.scss +191 -0
- package/src/components/Avatar/Avatar.vue +44 -0
- package/src/components/Badge/Badge.scss +84 -0
- package/src/components/Badge/Badge.vue +41 -0
- package/src/components/BlockUI/BlockUI.scss +85 -0
- package/src/components/BlockUI/BlockUI.vue +90 -0
- package/src/components/Breadcrumb/Breadcrumb.scss +84 -0
- package/src/components/Breadcrumb/Breadcrumb.vue +141 -0
- package/src/components/Button/Button.scss +254 -0
- package/src/components/Button/Button.vue +68 -0
- package/src/components/CTA/CTA.scss +92 -0
- package/src/components/CTA/CTA.vue +33 -0
- package/src/components/Calendar/Calendar.scss +330 -0
- package/src/components/Calendar/Calendar.vue +455 -0
- package/src/components/Card/Card.scss +66 -0
- package/src/components/Card/Card.vue +48 -0
- package/src/components/Carousel/Carousel.scss +121 -0
- package/src/components/Carousel/Carousel.vue +191 -0
- package/src/components/Chart/Chart.scss +109 -0
- package/src/components/Chart/Chart.vue +209 -0
- package/src/components/Checkbox/Checkbox.scss +148 -0
- package/src/components/Checkbox/Checkbox.vue +75 -0
- package/src/components/Chip/Chip.scss +83 -0
- package/src/components/Chip/Chip.vue +73 -0
- package/src/components/ColorPicker/ColorPicker.scss +244 -0
- package/src/components/ColorPicker/ColorPicker.vue +411 -0
- package/src/components/Column/Column.scss +87 -0
- package/src/components/Column/Column.vue +45 -0
- package/src/components/ColumnGroup/ColumnGroup.scss +41 -0
- package/src/components/ColumnGroup/ColumnGroup.vue +27 -0
- package/src/components/ColumnGroup/ColumnGroupRow.vue +18 -0
- package/src/components/CommandPalette/CommandPalette.scss +143 -0
- package/src/components/CommandPalette/CommandPalette.vue +165 -0
- package/src/components/ConfirmDialog/ConfirmDialog.scss +177 -0
- package/src/components/ConfirmDialog/ConfirmDialog.vue +162 -0
- package/src/components/ConfirmPopup/ConfirmPopup.scss +180 -0
- package/src/components/ConfirmPopup/ConfirmPopup.vue +185 -0
- package/src/components/ContextMenu/ContextMenu.scss +171 -0
- package/src/components/ContextMenu/ContextMenu.vue +383 -0
- package/src/components/DataTable/DataTable.scss +162 -0
- package/src/components/DataTable/DataTable.vue +225 -0
- package/src/components/DataView/DataView.scss +149 -0
- package/src/components/DataView/DataView.vue +172 -0
- package/src/components/DatePicker/DatePicker.scss +71 -0
- package/src/components/DatePicker/DatePicker.vue +121 -0
- package/src/components/Dialog/Dialog.scss +161 -0
- package/src/components/Dialog/Dialog.vue +245 -0
- package/src/components/Divider/Divider.scss +147 -0
- package/src/components/Divider/Divider.vue +49 -0
- package/src/components/Dock/Dock.scss +221 -0
- package/src/components/Dock/Dock.vue +107 -0
- package/src/components/Drawer/Drawer.scss +220 -0
- package/src/components/Drawer/Drawer.vue +137 -0
- package/src/components/Dropdown/Dropdown.scss +218 -0
- package/src/components/Dropdown/Dropdown.vue +313 -0
- package/src/components/Editor/Editor.scss +156 -0
- package/src/components/Editor/Editor.vue +253 -0
- package/src/components/FAQ/FAQ.scss +24 -0
- package/src/components/FAQ/FAQ.vue +28 -0
- package/src/components/FeatureGrid/FeatureGrid.scss +92 -0
- package/src/components/FeatureGrid/FeatureGrid.vue +39 -0
- package/src/components/FieldSet/FieldSet.scss +97 -0
- package/src/components/FieldSet/FieldSet.vue +70 -0
- package/src/components/FileUpload/FileUpload.scss +137 -0
- package/src/components/FileUpload/FileUpload.vue +183 -0
- package/src/components/Footer/Footer.scss +95 -0
- package/src/components/Footer/Footer.vue +59 -0
- package/src/components/Form/Form.scss +72 -0
- package/src/components/Form/Form.vue +30 -0
- package/src/components/Form/FormField.vue +42 -0
- package/src/components/Galleria/Galleria.scss +295 -0
- package/src/components/Galleria/Galleria.vue +274 -0
- package/src/components/Hero/Hero.scss +116 -0
- package/src/components/Hero/Hero.vue +57 -0
- package/src/components/Image/Image.scss +129 -0
- package/src/components/Image/Image.vue +117 -0
- package/src/components/ImageCompare/ImageCompare.scss +97 -0
- package/src/components/ImageCompare/ImageCompare.vue +66 -0
- package/src/components/InPlace/InPlace.scss +97 -0
- package/src/components/InPlace/InPlace.vue +107 -0
- package/src/components/InlineMessage/InlineMessage.scss +69 -0
- package/src/components/InlineMessage/InlineMessage.vue +47 -0
- package/src/components/InputChips/InputChips.scss +165 -0
- package/src/components/InputChips/InputChips.vue +169 -0
- package/src/components/InputGroup/InputGroup.scss +57 -0
- package/src/components/InputGroup/InputGroup.vue +22 -0
- package/src/components/InputGroupAddon/InputGroupAddon.scss +28 -0
- package/src/components/InputGroupAddon/InputGroupAddon.vue +22 -0
- package/src/components/InputIcon/InputIcon.scss +58 -0
- package/src/components/InputIcon/InputIcon.vue +28 -0
- package/src/components/InputMask/InputMask.scss +65 -0
- package/src/components/InputMask/InputMask.vue +268 -0
- package/src/components/InputNumber/InputNumber.scss +122 -0
- package/src/components/InputNumber/InputNumber.vue +150 -0
- package/src/components/InputOtp/InputOtp.scss +88 -0
- package/src/components/InputOtp/InputOtp.vue +230 -0
- package/src/components/InputSwitch/InputSwitch.scss +131 -0
- package/src/components/InputSwitch/InputSwitch.vue +49 -0
- package/src/components/InputText/InputText.scss +61 -0
- package/src/components/InputText/InputText.vue +71 -0
- package/src/components/Knob/Knob.scss +92 -0
- package/src/components/Knob/Knob.vue +252 -0
- package/src/components/ListBox/ListBox.scss +152 -0
- package/src/components/ListBox/ListBox.vue +198 -0
- package/src/components/LogoCloud/LogoCloud.scss +64 -0
- package/src/components/LogoCloud/LogoCloud.vue +35 -0
- package/src/components/MegaMenu/MegaMenu.scss +280 -0
- package/src/components/MegaMenu/MegaMenu.vue +218 -0
- package/src/components/Menu/Menu.scss +102 -0
- package/src/components/Menu/Menu.vue +221 -0
- package/src/components/MenuBar/MenuBar.scss +208 -0
- package/src/components/MenuBar/MenuBar.vue +306 -0
- package/src/components/Message/Message.scss +126 -0
- package/src/components/Message/Message.vue +99 -0
- package/src/components/MeterGroup/MeterGroup.scss +105 -0
- package/src/components/MeterGroup/MeterGroup.vue +73 -0
- package/src/components/MultiSelect/MultiSelect.scss +239 -0
- package/src/components/MultiSelect/MultiSelect.vue +296 -0
- package/src/components/OrderList/OrderList.scss +133 -0
- package/src/components/OrderList/OrderList.vue +267 -0
- package/src/components/OrganizationChart/OrganizationChart.scss +145 -0
- package/src/components/OrganizationChart/OrganizationChart.vue +220 -0
- package/src/components/OverlayPanel/OverlayPanel.scss +69 -0
- package/src/components/OverlayPanel/OverlayPanel.vue +180 -0
- package/src/components/Paginator/Paginator.scss +130 -0
- package/src/components/Paginator/Paginator.vue +212 -0
- package/src/components/Panel/Panel.scss +113 -0
- package/src/components/Panel/Panel.vue +89 -0
- package/src/components/PanelMenu/PanelMenu.scss +211 -0
- package/src/components/PanelMenu/PanelMenu.vue +295 -0
- package/src/components/ParticleBackground/ParticleBackground.vue +310 -0
- package/src/components/PickList/PickList.scss +126 -0
- package/src/components/PickList/PickList.vue +249 -0
- package/src/components/PopOver/PopOver.scss +112 -0
- package/src/components/PopOver/PopOver.vue +254 -0
- package/src/components/PricingTable/PricingCard.vue +33 -0
- package/src/components/PricingTable/PricingTable.scss +133 -0
- package/src/components/PricingTable/PricingTable.vue +21 -0
- package/src/components/ProgressBar/ProgressBar.scss +58 -0
- package/src/components/ProgressBar/ProgressBar.vue +48 -0
- package/src/components/ProgressSpinner/ProgressSpinner.scss +48 -0
- package/src/components/ProgressSpinner/ProgressSpinner.vue +53 -0
- package/src/components/RadioButton/RadioButton.scss +148 -0
- package/src/components/RadioButton/RadioButton.vue +52 -0
- package/src/components/Rating/Rating.scss +109 -0
- package/src/components/Rating/Rating.vue +136 -0
- package/src/components/Row/Row.scss +38 -0
- package/src/components/Row/Row.vue +30 -0
- package/src/components/ScrollPanel/ScrollPanel.scss +90 -0
- package/src/components/ScrollPanel/ScrollPanel.vue +284 -0
- package/src/components/ScrollTop/ScrollTop.scss +59 -0
- package/src/components/ScrollTop/ScrollTop.vue +99 -0
- package/src/components/Section/Section.scss +58 -0
- package/src/components/Section/Section.vue +39 -0
- package/src/components/Select/Select.scss +98 -0
- package/src/components/Select/Select.vue +92 -0
- package/src/components/SelectButton/SelectButton.scss +65 -0
- package/src/components/SelectButton/SelectButton.vue +144 -0
- package/src/components/Sidebar/Sidebar.scss +170 -0
- package/src/components/Sidebar/Sidebar.vue +137 -0
- package/src/components/Skeleton/Skeleton.scss +43 -0
- package/src/components/Skeleton/Skeleton.vue +57 -0
- package/src/components/Slider/Slider.scss +103 -0
- package/src/components/Slider/Slider.vue +65 -0
- package/src/components/SpeedDial/SpeedDial.scss +217 -0
- package/src/components/SpeedDial/SpeedDial.vue +196 -0
- package/src/components/SplitButton/SplitButton.scss +264 -0
- package/src/components/SplitButton/SplitButton.vue +172 -0
- package/src/components/Splitter/Splitter.scss +95 -0
- package/src/components/Splitter/Splitter.vue +191 -0
- package/src/components/Splitter/SplitterPanel.vue +125 -0
- package/src/components/Stats/Stats.scss +54 -0
- package/src/components/Stats/Stats.vue +28 -0
- package/src/components/Steps/Steps.scss +164 -0
- package/src/components/Steps/Steps.vue +100 -0
- package/src/components/TabMenu/TabMenu.scss +106 -0
- package/src/components/TabMenu/TabMenu.vue +174 -0
- package/src/components/Tabs/TabPanel.vue +41 -0
- package/src/components/Tabs/Tabs.scss +82 -0
- package/src/components/Tabs/Tabs.vue +162 -0
- package/src/components/Tag/Tag.scss +73 -0
- package/src/components/Tag/Tag.vue +37 -0
- package/src/components/Terminal/Terminal.scss +80 -0
- package/src/components/Terminal/Terminal.vue +113 -0
- package/src/components/Testimonial/Testimonial.scss +80 -0
- package/src/components/Testimonial/Testimonial.vue +29 -0
- package/src/components/Textarea/Textarea.scss +65 -0
- package/src/components/Textarea/Textarea.vue +101 -0
- package/src/components/TieredMenu/TieredMenu.scss +146 -0
- package/src/components/TieredMenu/TieredMenu.vue +270 -0
- package/src/components/TieredMenu/TieredMenuSub.vue +132 -0
- package/src/components/Timeline/Timeline.scss +190 -0
- package/src/components/Timeline/Timeline.vue +79 -0
- package/src/components/Toast/Toast.scss +284 -0
- package/src/components/Toast/Toast.vue +162 -0
- package/src/components/ToggleButton/ToggleButton.scss +99 -0
- package/src/components/ToggleButton/ToggleButton.vue +65 -0
- package/src/components/ToggleSwitch/ToggleSwitch.scss +68 -0
- package/src/components/ToggleSwitch/ToggleSwitch.vue +44 -0
- package/src/components/Toolbar/Toolbar.scss +37 -0
- package/src/components/Toolbar/Toolbar.vue +23 -0
- package/src/components/Tooltip/Tooltip.scss +114 -0
- package/src/components/Tooltip/Tooltip.vue +169 -0
- package/src/components/Tree/Tree.scss +164 -0
- package/src/components/Tree/Tree.vue +273 -0
- package/src/components/TreeSelect/TreeSelect.scss +238 -0
- package/src/components/TreeSelect/TreeSelect.vue +401 -0
- package/src/components/TreeTable/TreeTable.scss +172 -0
- package/src/components/TreeTable/TreeTable.vue +285 -0
- package/src/components/VirtualScroller/VirtualScroller.scss +107 -0
- package/src/components/VirtualScroller/VirtualScroller.vue +234 -0
- package/src/scss/fonts.scss +63 -0
- package/src/scss/mixins/accent-gradient.scss +43 -0
- package/src/scss/mixins/border.scss +28 -0
- package/src/scss/mixins/breakpoint.scss +80 -0
- package/src/scss/mixins/container.scss +33 -0
- package/src/scss/mixins/elevation.scss +43 -0
- package/src/scss/mixins/grid.scss +23 -0
- package/src/scss/mixins/levitation.scss +15 -0
- package/src/scss/mixins/list.scss +5 -0
- package/src/scss/mixins/surface-atmospheric.scss +93 -0
- package/src/scss/mixins/surface.scss +19 -0
- package/src/scss/mixins/typography.scss +91 -0
- package/src/scss/utility-classes/utility-classes-spacing.scss +34 -0
- package/src/scss/utility-classes/utility-classes-typography.scss +114 -0
- package/tokens/components/accordion.json +127 -0
- package/tokens/components/autocomplete.json +238 -0
- package/tokens/components/avatar.json +220 -0
- package/tokens/components/badge.json +119 -0
- package/tokens/components/block-ui.json +40 -0
- package/tokens/components/breadcrumb.json +57 -0
- package/tokens/components/button.json +395 -0
- package/tokens/components/calendar.json +260 -0
- package/tokens/components/card.json +157 -0
- package/tokens/components/carousel.json +154 -0
- package/tokens/components/chart.json +132 -0
- package/tokens/components/checkbox.json +130 -0
- package/tokens/components/chip.json +100 -0
- package/tokens/components/color-picker.json +196 -0
- package/tokens/components/column-group.json +45 -0
- package/tokens/components/column.json +109 -0
- package/tokens/components/confirm-dialog.json +141 -0
- package/tokens/components/confirm-popup.json +101 -0
- package/tokens/components/context-menu.json +168 -0
- package/tokens/components/data-table.json +157 -0
- package/tokens/components/data-view.json +172 -0
- package/tokens/components/dialog.json +151 -0
- package/tokens/components/divider.json +45 -0
- package/tokens/components/dock.json +173 -0
- package/tokens/components/drawer.json +163 -0
- package/tokens/components/dropdown.json +230 -0
- package/tokens/components/editor.json +170 -0
- package/tokens/components/field-set.json +115 -0
- package/tokens/components/file-upload.json +193 -0
- package/tokens/components/galleria.json +235 -0
- package/tokens/components/image-compare.json +74 -0
- package/tokens/components/image.json +71 -0
- package/tokens/components/in-place.json +100 -0
- package/tokens/components/inline-message.json +107 -0
- package/tokens/components/input-chips.json +187 -0
- package/tokens/components/input-group-addon.json +47 -0
- package/tokens/components/input-group.json +21 -0
- package/tokens/components/input-icon.json +38 -0
- package/tokens/components/input-mask.json +136 -0
- package/tokens/components/input-number.json +144 -0
- package/tokens/components/input-otp.json +138 -0
- package/tokens/components/input-switch.json +108 -0
- package/tokens/components/input-text.json +136 -0
- package/tokens/components/knob.json +119 -0
- package/tokens/components/listbox.json +166 -0
- package/tokens/components/mega-menu.json +283 -0
- package/tokens/components/menu.json +145 -0
- package/tokens/components/menubar.json +152 -0
- package/tokens/components/message.json +151 -0
- package/tokens/components/meter-group.json +108 -0
- package/tokens/components/multi-select.json +244 -0
- package/tokens/components/order-list.json +193 -0
- package/tokens/components/organization-chart.json +188 -0
- package/tokens/components/overlay-panel.json +94 -0
- package/tokens/components/paginator.json +186 -0
- package/tokens/components/panel.json +120 -0
- package/tokens/components/panelmenu.json +190 -0
- package/tokens/components/picklist.json +187 -0
- package/tokens/components/popover.json +65 -0
- package/tokens/components/progress-bar.json +33 -0
- package/tokens/components/progress-spinner.json +38 -0
- package/tokens/components/radio.json +125 -0
- package/tokens/components/rating.json +76 -0
- package/tokens/components/row.json +62 -0
- package/tokens/components/scroll-panel.json +69 -0
- package/tokens/components/scroll-top.json +84 -0
- package/tokens/components/select-button.json +145 -0
- package/tokens/components/select.json +190 -0
- package/tokens/components/sidebar.json +146 -0
- package/tokens/components/skeleton.json +26 -0
- package/tokens/components/slider.json +82 -0
- package/tokens/components/speed-dial.json +144 -0
- package/tokens/components/split-button.json +316 -0
- package/tokens/components/splitter.json +88 -0
- package/tokens/components/steps.json +154 -0
- package/tokens/components/tabmenu.json +103 -0
- package/tokens/components/tabs.json +97 -0
- package/tokens/components/tag.json +122 -0
- package/tokens/components/terminal.json +100 -0
- package/tokens/components/textarea.json +96 -0
- package/tokens/components/tieredmenu.json +142 -0
- package/tokens/components/timeline.json +129 -0
- package/tokens/components/toast.json +281 -0
- package/tokens/components/toggle-button.json +220 -0
- package/tokens/components/toggle-switch.json +95 -0
- package/tokens/components/toolbar.json +41 -0
- package/tokens/components/tooltip.json +60 -0
- package/tokens/components/tree-select.json +224 -0
- package/tokens/components/tree.json +153 -0
- package/tokens/components/treetable.json +155 -0
- package/tokens/components/virtualscroller.json +95 -0
- package/tokens/primitives/color.json +137 -0
- package/tokens/primitives/radius.json +12 -0
- package/tokens/primitives/shadow.json +29 -0
- package/tokens/primitives/spacing.json +15 -0
- package/tokens/semantics/color.json +81 -0
- package/tokens/semantics/radius.json +10 -0
- package/tokens/semantics/shadow.json +9 -0
- package/tokens/semantics/spacing.json +24 -0
- package/tokens/themes/dark.json +7 -0
- package/tokens/themes/light.json +7 -0
|
@@ -0,0 +1,2315 @@
|
|
|
1
|
+
/* Auto-generated by build-tokens.ts - DO NOT EDIT */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--surface-canvas: #0a0e1f; /* Main page background */
|
|
5
|
+
--surface-panel: #11162d; /* Card/panel background */
|
|
6
|
+
--surface-elevated: #1a2244; /* Elevated surface (modals, dropdowns) */
|
|
7
|
+
--surface-overlay: rgba(0, 0, 0, 0.6); /* Modal overlay backdrop */
|
|
8
|
+
--surface-muted: #060813; /* Subtle/recessed background */
|
|
9
|
+
--surface-inverse: #ffffff; /* Light surface for contrast (tooltips) */
|
|
10
|
+
--surface-accent: #78350f; /* Warm accent surface for cards */
|
|
11
|
+
--surface-gradient-start: #060813; /* Gradient background start (top) */
|
|
12
|
+
--surface-gradient-end: #11162d; /* Gradient background end (bottom) */
|
|
13
|
+
--text-default: #ffffff; /* Primary text */
|
|
14
|
+
--text-primary: #ffffff; /* Primary text (alias) */
|
|
15
|
+
--text-secondary: #9ea5c2; /* Secondary text */
|
|
16
|
+
--text-muted: #7680a9; /* Helper/secondary text */
|
|
17
|
+
--text-subtle: #525d8f; /* Placeholder text */
|
|
18
|
+
--text-inverse: #0a0e1f; /* Text on light backgrounds */
|
|
19
|
+
--text-link: #fb923c; /* Link text */
|
|
20
|
+
--text-linkHover: #fdba74; /* Link hover */
|
|
21
|
+
--text-linkVisited: #a78bfa; /* Visited link */
|
|
22
|
+
--text-heading: #ffffff; /* Heading text */
|
|
23
|
+
--border-subtle: #1a2244; /* Subtle borders */
|
|
24
|
+
--border-default: #242e5c; /* Default borders */
|
|
25
|
+
--border-strong: #2e3b75; /* Emphasized borders */
|
|
26
|
+
--border-focus: #f97316; /* Focus ring color */
|
|
27
|
+
--border-vibrant-start: #f97316; /* Vibrant gradient border start */
|
|
28
|
+
--border-vibrant-end: #d97706; /* Vibrant gradient border end */
|
|
29
|
+
--feedback-success: #22c55e; /* Success state */
|
|
30
|
+
--feedback-successSubtle: rgba(34, 197, 94, 0.15); /* Success background */
|
|
31
|
+
--feedback-successEmphasis: #4ade80; /* Success text */
|
|
32
|
+
--feedback-warning: #f59e0b; /* Warning state */
|
|
33
|
+
--feedback-warningSubtle: rgba(245, 158, 11, 0.15); /* Warning background */
|
|
34
|
+
--feedback-warningEmphasis: #fbbf24; /* Warning text */
|
|
35
|
+
--feedback-error: #ef4444; /* Error state */
|
|
36
|
+
--feedback-errorSubtle: rgba(239, 68, 68, 0.15); /* Error background */
|
|
37
|
+
--feedback-errorEmphasis: #f87171; /* Error text */
|
|
38
|
+
--feedback-info: #3b82f6; /* Info state */
|
|
39
|
+
--feedback-infoSubtle: rgba(59, 130, 246, 0.15); /* Info background */
|
|
40
|
+
--feedback-infoEmphasis: #60a5fa; /* Info text */
|
|
41
|
+
--accent-gradient-start: #f97316; /* Accent gradient start */
|
|
42
|
+
--accent-gradient-end: #f59e0b; /* Accent gradient end */
|
|
43
|
+
--accent-gradient-hoverStart: #fb923c; /* Accent gradient hover start */
|
|
44
|
+
--accent-gradient-hoverEnd: #fbbf24; /* Accent gradient hover end */
|
|
45
|
+
--intent-action-default: #f97316; /* Primary CTA color */
|
|
46
|
+
--intent-action-hover: #fb923c; /* Primary CTA hover */
|
|
47
|
+
--intent-action-active: #ea580c; /* Primary CTA pressed */
|
|
48
|
+
--intent-action-disabled: #242e5c; /* Disabled state */
|
|
49
|
+
--intent-secondary-default: transparent; /* Secondary action bg */
|
|
50
|
+
--intent-secondary-hover: #1a2244; /* Secondary action hover */
|
|
51
|
+
--intent-secondary-border: #2e3b75; /* Secondary action border */
|
|
52
|
+
--focus-ring: #f97316; /* Focus ring color */
|
|
53
|
+
--brand-primary: #11162d; /* Primary brand color */
|
|
54
|
+
--brand-secondary: #f97316; /* Secondary brand color (CTA) */
|
|
55
|
+
--brand-accent: #fbbf24; /* Accent brand color */
|
|
56
|
+
--brand-subtle: #1a2244; /* Subtle brand background */
|
|
57
|
+
--radius-none: 0; /* No rounding */
|
|
58
|
+
--radius-subtle: 2px; /* Subtle rounding */
|
|
59
|
+
--radius-default: 5px; /* Default border radius */
|
|
60
|
+
--radius-rounded: 8px; /* More rounded corners */
|
|
61
|
+
--radius-large: 13px; /* Large radius for cards */
|
|
62
|
+
--radius-pill: 9999px; /* Fully rounded (pills, circles) */
|
|
63
|
+
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.08); /* Subtle depth - hover states */
|
|
64
|
+
--shadow-s: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Low elevation - cards, buttons */
|
|
65
|
+
--shadow-m: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Medium elevation - dropdowns */
|
|
66
|
+
--shadow-l: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* High elevation - modals */
|
|
67
|
+
--shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08); /* Highest elevation - toasts */
|
|
68
|
+
--space-3xs: 2px; /* 2px */
|
|
69
|
+
--space-2xs: 4px; /* 4px */
|
|
70
|
+
--space-xs: 6px; /* 6px */
|
|
71
|
+
--space-s: 10px; /* 10px */
|
|
72
|
+
--space-m: 16px; /* 16px */
|
|
73
|
+
--space-l: 26px; /* 26px */
|
|
74
|
+
--space-xl: 42px; /* 42px */
|
|
75
|
+
--space-2xl: 68px; /* 68px */
|
|
76
|
+
--inset-2xs: 2px; /* Inset (padding) 2px */
|
|
77
|
+
--inset-xs: 4px; /* Inset (padding) 4px */
|
|
78
|
+
--inset-s: 6px; /* Inset (padding) 6px */
|
|
79
|
+
--inset-m: 16px; /* Inset (padding) 16px */
|
|
80
|
+
--inset-l: 26px; /* Inset (padding) 26px */
|
|
81
|
+
--inset-xl: 42px; /* Inset (padding) 42px */
|
|
82
|
+
--inline-xs: 4px; /* Inline (horizontal) gap 4px */
|
|
83
|
+
--inline-s: 6px; /* Inline (horizontal) gap 6px */
|
|
84
|
+
--accordion-header-padding: 16px; /* Header padding */
|
|
85
|
+
--accordion-header-background-default: #11162d; /* Header background */
|
|
86
|
+
--accordion-header-background-hover: rgba(255, 255, 255, 0.05); /* Header hover background - semi-transparent for dark mode */
|
|
87
|
+
--accordion-header-background-active: #060813; /* Header active/expanded background */
|
|
88
|
+
--accordion-header-color-default: #ffffff; /* Header text color */
|
|
89
|
+
--accordion-header-color-hover: #ffffff; /* Header text color on hover */
|
|
90
|
+
--accordion-header-color-disabled: #7680a9; /* Header text color when disabled */
|
|
91
|
+
--accordion-content-padding: 16px; /* Content padding */
|
|
92
|
+
--accordion-content-background: #0a0e1f; /* Content background */
|
|
93
|
+
--accordion-content-color: #ffffff; /* Content text color */
|
|
94
|
+
--accordion-border-width: 1px; /* Border width */
|
|
95
|
+
--accordion-border-color: #1a2244; /* Border color */
|
|
96
|
+
--accordion-border-radius: 5px; /* Border radius */
|
|
97
|
+
--accordion-icon-size: 16px; /* Toggle icon size */
|
|
98
|
+
--accordion-icon-color-default: #7680a9; /* Icon color */
|
|
99
|
+
--accordion-icon-color-hover: #ffffff; /* Icon color on hover */
|
|
100
|
+
--accordion-icon-color-disabled: rgba(255, 255, 255, 0.25); /* Icon color when disabled */
|
|
101
|
+
--accordion-icon-rotation-collapsed: 0deg; /* Icon rotation when collapsed */
|
|
102
|
+
--accordion-icon-rotation-expanded: 180deg; /* Icon rotation when expanded */
|
|
103
|
+
--accordion-transition-duration: 200ms; /* Animation duration */
|
|
104
|
+
--accordion-gap: 0px; /* Gap between accordion tabs */
|
|
105
|
+
--autocomplete-height-sm: 32px;
|
|
106
|
+
--autocomplete-height-md: 40px;
|
|
107
|
+
--autocomplete-height-lg: 48px;
|
|
108
|
+
--autocomplete-padding-x: 16px;
|
|
109
|
+
--autocomplete-padding-y: 10px;
|
|
110
|
+
--autocomplete-gap: 6px;
|
|
111
|
+
--autocomplete-radius: 5px;
|
|
112
|
+
--autocomplete-border-width: 1px;
|
|
113
|
+
--autocomplete-border-color-default: #d4d4d4;
|
|
114
|
+
--autocomplete-border-color-hover: #a3a3a3;
|
|
115
|
+
--autocomplete-border-color-focus: #11162d;
|
|
116
|
+
--autocomplete-border-color-disabled: #e5e5e5;
|
|
117
|
+
--autocomplete-border-color-error: #ef4444;
|
|
118
|
+
--autocomplete-background-default: #0a0e1f;
|
|
119
|
+
--autocomplete-background-disabled: #f5f5f5;
|
|
120
|
+
--autocomplete-text-default: #ffffff;
|
|
121
|
+
--autocomplete-text-placeholder: #7680a9;
|
|
122
|
+
--autocomplete-text-disabled: #7680a9;
|
|
123
|
+
--autocomplete-fontSize-sm: 14px;
|
|
124
|
+
--autocomplete-fontSize-md: 15px;
|
|
125
|
+
--autocomplete-fontSize-lg: 16px;
|
|
126
|
+
--autocomplete-dropdown-background: #0a0e1f;
|
|
127
|
+
--autocomplete-dropdown-border: #e5e5e5;
|
|
128
|
+
--autocomplete-dropdown-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
129
|
+
--autocomplete-dropdown-radius: 5px;
|
|
130
|
+
--autocomplete-dropdown-maxHeight: 280px;
|
|
131
|
+
--autocomplete-option-padding-x: 16px;
|
|
132
|
+
--autocomplete-option-padding-y: 10px;
|
|
133
|
+
--autocomplete-option-background-default: transparent;
|
|
134
|
+
--autocomplete-option-background-hover: #f5f5f5;
|
|
135
|
+
--autocomplete-option-background-selected: #11162d;
|
|
136
|
+
--autocomplete-option-text-default: #ffffff;
|
|
137
|
+
--autocomplete-option-text-selected: #ffffff;
|
|
138
|
+
--autocomplete-chip-padding-x: 10px;
|
|
139
|
+
--autocomplete-chip-padding-y: 4px;
|
|
140
|
+
--autocomplete-chip-gap: 4px;
|
|
141
|
+
--autocomplete-chip-radius: 9999px;
|
|
142
|
+
--autocomplete-chip-background-default: #060813;
|
|
143
|
+
--autocomplete-chip-background-hover: #e5e5e5;
|
|
144
|
+
--autocomplete-chip-text: #ffffff;
|
|
145
|
+
--autocomplete-chip-fontSize: 13px;
|
|
146
|
+
--autocomplete-remove-size: 14px;
|
|
147
|
+
--autocomplete-remove-color-default: #7680a9;
|
|
148
|
+
--autocomplete-remove-color-hover: #ffffff;
|
|
149
|
+
--autocomplete-focus-ringWidth: 2px;
|
|
150
|
+
--autocomplete-focus-ringColor: #11162d;
|
|
151
|
+
--autocomplete-focus-ringOffset: 1px;
|
|
152
|
+
--autocomplete-loader-size: 16px;
|
|
153
|
+
--autocomplete-loader-color: #a3a3a3;
|
|
154
|
+
--avatar-background-default: #e5e5e5; /* Default avatar background */
|
|
155
|
+
--avatar-background-muted: #f5f5f5; /* Subtle avatar background */
|
|
156
|
+
--avatar-background-brand: #242e5c; /* Brand-colored avatar */
|
|
157
|
+
--avatar-background-accent: #0a0e1f; /* Warm accent avatar */
|
|
158
|
+
--avatar-background-success: #22c55e; /* Success state avatar */
|
|
159
|
+
--avatar-background-warning: #f59e0b; /* Warning state avatar */
|
|
160
|
+
--avatar-background-error: #ef4444; /* Error state avatar */
|
|
161
|
+
--avatar-text-default: #404040; /* Text on light backgrounds */
|
|
162
|
+
--avatar-text-inverse: #ffffff; /* Text on dark backgrounds */
|
|
163
|
+
--avatar-text-brand: #ffffff; /* Text on brand background */
|
|
164
|
+
--avatar-border-default: #d4d4d4; /* Default border color */
|
|
165
|
+
--avatar-border-ring: #ffffff; /* Ring/outline around avatar */
|
|
166
|
+
--avatar-border-width: 2px; /* Border width */
|
|
167
|
+
--avatar-radius-square: 8px; /* Rounded square avatar */
|
|
168
|
+
--avatar-radius-circle: 9999px; /* Circular avatar */
|
|
169
|
+
--avatar-size-xs: 24px; /* Extra small avatar */
|
|
170
|
+
--avatar-size-sm: 32px; /* Small avatar */
|
|
171
|
+
--avatar-size-md: 40px; /* Medium avatar (default) */
|
|
172
|
+
--avatar-size-lg: 56px; /* Large avatar */
|
|
173
|
+
--avatar-size-xl: 80px; /* Extra large avatar */
|
|
174
|
+
--avatar-size-2xl: 96px; /* 2x large avatar */
|
|
175
|
+
--avatar-iconSize-xs: 10px;
|
|
176
|
+
--avatar-iconSize-sm: 12px;
|
|
177
|
+
--avatar-iconSize-md: 16px;
|
|
178
|
+
--avatar-iconSize-lg: 24px;
|
|
179
|
+
--avatar-iconSize-xl: 32px;
|
|
180
|
+
--avatar-iconSize-2xl: 40px;
|
|
181
|
+
--avatar-fontSize-xs: 10px;
|
|
182
|
+
--avatar-fontSize-sm: 12px;
|
|
183
|
+
--avatar-fontSize-md: 14px;
|
|
184
|
+
--avatar-fontSize-lg: 20px;
|
|
185
|
+
--avatar-fontSize-xl: 28px;
|
|
186
|
+
--avatar-fontSize-2xl: 36px;
|
|
187
|
+
--avatar-status-size-sm: 8px;
|
|
188
|
+
--avatar-status-size-md: 10px;
|
|
189
|
+
--avatar-status-size-lg: 12px;
|
|
190
|
+
--avatar-status-online: #22c55e;
|
|
191
|
+
--avatar-status-offline: #a3a3a3;
|
|
192
|
+
--avatar-status-busy: #ef4444;
|
|
193
|
+
--avatar-status-away: #f59e0b;
|
|
194
|
+
--avatar-group-overlap: -8px; /* Overlap amount for avatar groups */
|
|
195
|
+
--avatar-group-ringWidth: 2px; /* Ring width in groups */
|
|
196
|
+
--avatar-group-ringColor: #0a0e1f; /* Ring color matches canvas */
|
|
197
|
+
--badge-background-primary: #f97316; /* Primary badge background - visible accent color */
|
|
198
|
+
--badge-background-success: #22c55e; /* Success badge background */
|
|
199
|
+
--badge-background-warning: #f59e0b; /* Warning badge background */
|
|
200
|
+
--badge-background-danger: #ef4444; /* Danger badge background */
|
|
201
|
+
--badge-background-info: #3b82f6; /* Info badge background */
|
|
202
|
+
--badge-text-primary: #ffffff; /* Text on primary badge - white */
|
|
203
|
+
--badge-text-success: #0a0e1f; /* Text on success badge */
|
|
204
|
+
--badge-text-warning: #171717; /* Text on warning badge (dark for contrast) */
|
|
205
|
+
--badge-text-danger: #0a0e1f; /* Text on danger badge */
|
|
206
|
+
--badge-text-info: #0a0e1f; /* Text on info badge */
|
|
207
|
+
--badge-size-sm: 16px; /* Small badge min height */
|
|
208
|
+
--badge-size-md: 20px; /* Medium badge min height */
|
|
209
|
+
--badge-size-lg: 24px; /* Large badge min height */
|
|
210
|
+
--badge-fontSize-sm: 10px; /* Small badge font size */
|
|
211
|
+
--badge-fontSize-md: 12px; /* Medium badge font size */
|
|
212
|
+
--badge-fontSize-lg: 14px; /* Large badge font size */
|
|
213
|
+
--badge-padding-sm: 4px; /* Small badge horizontal padding */
|
|
214
|
+
--badge-padding-md: 6px; /* Medium badge horizontal padding */
|
|
215
|
+
--badge-padding-lg: 10px; /* Large badge horizontal padding */
|
|
216
|
+
--badge-radius: 9999px; /* Badge border radius (pill shape) */
|
|
217
|
+
--badge-fontWeight: 600; /* Badge font weight */
|
|
218
|
+
--block-ui-overlay-background: rgba(0, 0, 0, 0.6); /* Blocking overlay background */
|
|
219
|
+
--block-ui-overlay-zIndex: 1000; /* Overlay z-index */
|
|
220
|
+
--block-ui-spinner-size: 48px; /* Loading spinner size */
|
|
221
|
+
--block-ui-spinner-color: #11162d; /* Spinner color */
|
|
222
|
+
--block-ui-spinner-borderWidth: 4px; /* Spinner border width */
|
|
223
|
+
--block-ui-transition-duration: 200ms; /* Overlay fade transition */
|
|
224
|
+
--breadcrumb-gap: 6px; /* Gap between breadcrumb items and separators */
|
|
225
|
+
--breadcrumb-separator-color: #7680a9; /* Separator icon/text color */
|
|
226
|
+
--breadcrumb-separator-size: 12px; /* Separator icon size */
|
|
227
|
+
--breadcrumb-link-color-default: #7680a9; /* Default link color */
|
|
228
|
+
--breadcrumb-link-color-hover: #fb923c; /* Link hover color */
|
|
229
|
+
--breadcrumb-link-color-current: #ffffff; /* Current/active item color */
|
|
230
|
+
--breadcrumb-icon-size: 16px; /* Icon size in breadcrumb items */
|
|
231
|
+
--breadcrumb-icon-gap: 4px; /* Gap between icon and label */
|
|
232
|
+
--breadcrumb-fontSize: 14px; /* Breadcrumb text size */
|
|
233
|
+
--button-background-primary-default: #f97316; /* Primary button background */
|
|
234
|
+
--button-background-primary-hover: #fb923c; /* Primary button hover background */
|
|
235
|
+
--button-background-primary-active: #ea580c; /* Primary button active/pressed background */
|
|
236
|
+
--button-background-primary-disabled: #1a2244; /* Primary button disabled background */
|
|
237
|
+
--button-background-secondary-default: #11162d; /* Secondary button background */
|
|
238
|
+
--button-background-secondary-hover: #1a2244; /* Secondary button hover background */
|
|
239
|
+
--button-background-secondary-active: #242e5c; /* Secondary button active background */
|
|
240
|
+
--button-background-secondary-disabled: #11162d; /* Secondary button disabled background */
|
|
241
|
+
--button-background-outlined-default: transparent; /* Outlined button background */
|
|
242
|
+
--button-background-outlined-hover: #11162d; /* Outlined button hover background */
|
|
243
|
+
--button-background-outlined-active: #1a2244; /* Outlined button active/pressed background */
|
|
244
|
+
--button-background-outlined-disabled: transparent; /* Outlined button disabled background */
|
|
245
|
+
--button-background-text-default: transparent; /* Text button background */
|
|
246
|
+
--button-background-text-hover: #1a2244; /* Text button hover background */
|
|
247
|
+
--button-background-text-active: #242e5c; /* Text button active/pressed background */
|
|
248
|
+
--button-background-text-disabled: transparent; /* Text button disabled background */
|
|
249
|
+
--button-background-gradient-activeStart: #ea580c; /* Primary button active gradient start color */
|
|
250
|
+
--button-background-gradient-activeEnd: #d97706; /* Primary button active gradient end color */
|
|
251
|
+
--button-text-primary-default: #ffffff; /* Primary button text color - white */
|
|
252
|
+
--button-text-primary-shadow: 0 0 2px rgba(0, 0, 0, 0.3); /* Primary button text shadow glow */
|
|
253
|
+
--button-text-primary-disabled: #a3a3a3; /* Primary button disabled text color */
|
|
254
|
+
--button-text-secondary-default: #ffffff; /* Secondary button text color */
|
|
255
|
+
--button-text-secondary-disabled: #2e3b75; /* Secondary button disabled text color */
|
|
256
|
+
--button-text-outlined-default: #ffffff; /* Outlined button text color */
|
|
257
|
+
--button-text-outlined-disabled: #2e3b75; /* Outlined button disabled text color */
|
|
258
|
+
--button-text-text-default: #ffffff; /* Text button text color */
|
|
259
|
+
--button-text-text-disabled: #2e3b75; /* Text button disabled text color */
|
|
260
|
+
--button-border-primary-default: #f97316; /* Primary button border */
|
|
261
|
+
--button-border-primary-hover: #fb923c; /* Primary button hover border */
|
|
262
|
+
--button-border-primary-active: #ea580c; /* Primary button active border */
|
|
263
|
+
--button-border-primary-disabled: #e5e5e5; /* Primary button disabled border */
|
|
264
|
+
--button-border-secondary-default: transparent; /* Secondary button border (gradient via pseudo-element) */
|
|
265
|
+
--button-border-secondary-hover: transparent; /* Secondary button hover border */
|
|
266
|
+
--button-border-secondary-active: transparent; /* Secondary button active border */
|
|
267
|
+
--button-border-secondary-disabled: #242e5c; /* Secondary button disabled border */
|
|
268
|
+
--button-border-outlined-default: #11162d; /* Outlined button border */
|
|
269
|
+
--button-border-outlined-hover: #11162d; /* Outlined button hover border */
|
|
270
|
+
--button-border-outlined-active: #11162d; /* Outlined button active border */
|
|
271
|
+
--button-border-outlined-disabled: #d4d4d4; /* Outlined button disabled border */
|
|
272
|
+
--button-border-text-default: transparent; /* Text button border */
|
|
273
|
+
--button-border-text-hover: transparent; /* Text button hover border */
|
|
274
|
+
--button-border-text-active: transparent; /* Text button active border */
|
|
275
|
+
--button-border-text-disabled: transparent; /* Text button disabled border */
|
|
276
|
+
--button-border-width: 1px; /* Button border width */
|
|
277
|
+
--button-radius-default: 5px; /* Button border radius */
|
|
278
|
+
--button-radius-pill: 9999px; /* Pill button border radius */
|
|
279
|
+
--button-size-sm-height: 32px; /* Small button height */
|
|
280
|
+
--button-size-sm-paddingX: 10px; /* Small button horizontal padding */
|
|
281
|
+
--button-size-sm-paddingY: 4px; /* Small button vertical padding */
|
|
282
|
+
--button-size-sm-fontSize: 14px; /* Small button font size */
|
|
283
|
+
--button-size-sm-iconSize: 16px; /* Small button icon size */
|
|
284
|
+
--button-size-sm-gap: 4px; /* Small button gap between icon and label */
|
|
285
|
+
--button-size-md-height: 40px; /* Medium button height */
|
|
286
|
+
--button-size-md-paddingX: 16px; /* Medium button horizontal padding */
|
|
287
|
+
--button-size-md-paddingY: 6px; /* Medium button vertical padding */
|
|
288
|
+
--button-size-md-fontSize: 16px; /* Medium button font size */
|
|
289
|
+
--button-size-md-iconSize: 18px; /* Medium button icon size */
|
|
290
|
+
--button-size-md-gap: 6px; /* Medium button gap between icon and label */
|
|
291
|
+
--button-size-lg-height: 48px; /* Large button height */
|
|
292
|
+
--button-size-lg-paddingX: 26px; /* Large button horizontal padding */
|
|
293
|
+
--button-size-lg-paddingY: 10px; /* Large button vertical padding */
|
|
294
|
+
--button-size-lg-fontSize: 18px; /* Large button font size */
|
|
295
|
+
--button-size-lg-iconSize: 20px; /* Large button icon size */
|
|
296
|
+
--button-size-lg-gap: 10px; /* Large button gap between icon and label */
|
|
297
|
+
--button-fontWeight: 600; /* Button font weight */
|
|
298
|
+
--button-focus-ringColor: #f97316; /* Button focus ring color */
|
|
299
|
+
--button-focus-ringWidth: 2px; /* Button focus ring width */
|
|
300
|
+
--button-focus-ringOffset: 2px; /* Button focus ring offset */
|
|
301
|
+
--button-transition-duration: 150ms; /* Button transition duration */
|
|
302
|
+
--calendar-width: 280px;
|
|
303
|
+
--calendar-padding: 16px;
|
|
304
|
+
--calendar-radius: 5px;
|
|
305
|
+
--calendar-background: #0a0e1f;
|
|
306
|
+
--calendar-border-width: 1px;
|
|
307
|
+
--calendar-border-color: #e5e5e5;
|
|
308
|
+
--calendar-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
309
|
+
--calendar-header-padding: 10px;
|
|
310
|
+
--calendar-header-gap: 10px;
|
|
311
|
+
--calendar-header-text: #ffffff;
|
|
312
|
+
--calendar-header-fontSize: 16px;
|
|
313
|
+
--calendar-header-fontWeight: 600;
|
|
314
|
+
--calendar-nav-size: 32px;
|
|
315
|
+
--calendar-nav-radius: 5px;
|
|
316
|
+
--calendar-nav-background-default: transparent;
|
|
317
|
+
--calendar-nav-background-hover: #f5f5f5;
|
|
318
|
+
--calendar-nav-color-default: #7680a9;
|
|
319
|
+
--calendar-nav-color-hover: #ffffff;
|
|
320
|
+
--calendar-weekday-padding: 6px;
|
|
321
|
+
--calendar-weekday-text: #7680a9;
|
|
322
|
+
--calendar-weekday-fontSize: 12px;
|
|
323
|
+
--calendar-weekday-fontWeight: 500;
|
|
324
|
+
--calendar-day-size: 36px;
|
|
325
|
+
--calendar-day-radius: 5px;
|
|
326
|
+
--calendar-day-fontSize: 14px;
|
|
327
|
+
--calendar-day-text-default: #ffffff;
|
|
328
|
+
--calendar-day-text-muted: #7680a9;
|
|
329
|
+
--calendar-day-text-selected: #ffffff;
|
|
330
|
+
--calendar-day-text-today: #11162d;
|
|
331
|
+
--calendar-day-background-default: transparent;
|
|
332
|
+
--calendar-day-background-hover: #f5f5f5;
|
|
333
|
+
--calendar-day-background-selected: #11162d;
|
|
334
|
+
--calendar-day-background-today: transparent;
|
|
335
|
+
--calendar-day-background-range: #78350f;
|
|
336
|
+
--calendar-input-height-sm: 32px;
|
|
337
|
+
--calendar-input-height-md: 40px;
|
|
338
|
+
--calendar-input-height-lg: 48px;
|
|
339
|
+
--calendar-input-padding-x: 16px;
|
|
340
|
+
--calendar-input-fontSize-sm: 14px;
|
|
341
|
+
--calendar-input-fontSize-md: 15px;
|
|
342
|
+
--calendar-input-fontSize-lg: 16px;
|
|
343
|
+
--calendar-input-radius: 5px;
|
|
344
|
+
--calendar-input-border-color-default: #d4d4d4;
|
|
345
|
+
--calendar-input-border-color-hover: #a3a3a3;
|
|
346
|
+
--calendar-input-border-color-focus: #11162d;
|
|
347
|
+
--calendar-input-border-color-disabled: #e5e5e5;
|
|
348
|
+
--calendar-input-border-color-error: #ef4444;
|
|
349
|
+
--calendar-input-background-default: #0a0e1f;
|
|
350
|
+
--calendar-input-background-disabled: #f5f5f5;
|
|
351
|
+
--calendar-input-text-default: #ffffff;
|
|
352
|
+
--calendar-input-text-placeholder: #7680a9;
|
|
353
|
+
--calendar-input-text-disabled: #7680a9;
|
|
354
|
+
--calendar-focus-ringWidth: 2px;
|
|
355
|
+
--calendar-focus-ringColor: #11162d;
|
|
356
|
+
--calendar-focus-ringOffset: 1px;
|
|
357
|
+
--card-background: #11162d; /* Card background color */
|
|
358
|
+
--card-border-color: #1a2244; /* Card border color */
|
|
359
|
+
--card-border-width: 1px; /* Card border width */
|
|
360
|
+
--card-highlighted-border-start: #f97316; /* Highlighted card border - vibrant orange */
|
|
361
|
+
--card-highlighted-border-end: #fb923c; /* Highlighted card border end - bright orange */
|
|
362
|
+
--card-highlighted-border-width: 3px; /* Highlighted card border width */
|
|
363
|
+
--card-highlighted-glow: 0 0 15px rgba(249, 115, 22, 0.5), 0 0 30px rgba(249, 115, 22, 0.3), 0 0 45px rgba(249, 115, 22, 0.15); /* Highlighted card glow effect - vibrant orange */
|
|
364
|
+
--card-radius: 13px; /* Card border radius */
|
|
365
|
+
--card-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Card shadow */
|
|
366
|
+
--card-padding: 26px; /* Card inner padding */
|
|
367
|
+
--card-header-padding: 16px; /* Header section padding */
|
|
368
|
+
--card-header-borderColor: #1a2244; /* Header bottom border color */
|
|
369
|
+
--card-header-borderWidth: 1px; /* Header bottom border width */
|
|
370
|
+
--card-body-padding: 26px; /* Body section padding */
|
|
371
|
+
--card-body-gap: 10px; /* Gap between caption and content */
|
|
372
|
+
--card-title-color: #ffffff; /* Title text color */
|
|
373
|
+
--card-title-fontSize: 18px; /* Title font size */
|
|
374
|
+
--card-title-fontWeight: 600; /* Title font weight */
|
|
375
|
+
--card-title-lineHeight: 1.4; /* Title line height */
|
|
376
|
+
--card-subtitle-color: #7680a9; /* Subtitle text color */
|
|
377
|
+
--card-subtitle-fontSize: 14px; /* Subtitle font size */
|
|
378
|
+
--card-subtitle-fontWeight: 400; /* Subtitle font weight */
|
|
379
|
+
--card-subtitle-marginTop: 4px; /* Space between title and subtitle */
|
|
380
|
+
--card-content-color: #ffffff; /* Content text color */
|
|
381
|
+
--card-footer-padding: 16px; /* Footer section padding */
|
|
382
|
+
--card-footer-borderColor: #1a2244; /* Footer top border color */
|
|
383
|
+
--card-footer-borderWidth: 1px; /* Footer top border width */
|
|
384
|
+
--carousel-container-background: #11162d; /* Carousel container background */
|
|
385
|
+
--carousel-container-radius: 5px; /* Carousel container border radius */
|
|
386
|
+
--carousel-content-gap: 16px; /* Gap between carousel items */
|
|
387
|
+
--carousel-content-padding: 16px; /* Content area padding */
|
|
388
|
+
--carousel-item-background: #0a0e1f; /* Carousel item background */
|
|
389
|
+
--carousel-item-radius: 5px; /* Carousel item border radius */
|
|
390
|
+
--carousel-item-padding: 10px; /* Carousel item padding */
|
|
391
|
+
--carousel-navigator-size: 40px; /* Navigator button size */
|
|
392
|
+
--carousel-navigator-iconSize: 20px; /* Navigator icon size */
|
|
393
|
+
--carousel-navigator-background-default: #11162d; /* Navigator button background */
|
|
394
|
+
--carousel-navigator-background-hover: #060813; /* Navigator button hover background */
|
|
395
|
+
--carousel-navigator-background-disabled: #060813; /* Navigator button disabled background */
|
|
396
|
+
--carousel-navigator-color-default: #ffffff; /* Navigator icon color */
|
|
397
|
+
--carousel-navigator-color-hover: #11162d; /* Navigator icon hover color */
|
|
398
|
+
--carousel-navigator-color-disabled: #525d8f; /* Navigator icon disabled color */
|
|
399
|
+
--carousel-navigator-border-color: #1a2244; /* Navigator button border color */
|
|
400
|
+
--carousel-navigator-border-width: 1px; /* Navigator button border width */
|
|
401
|
+
--carousel-navigator-radius: 50%; /* Navigator button border radius */
|
|
402
|
+
--carousel-navigator-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Navigator button shadow */
|
|
403
|
+
--carousel-indicator-size: 10px; /* Indicator dot size */
|
|
404
|
+
--carousel-indicator-gap: 6px; /* Gap between indicators */
|
|
405
|
+
--carousel-indicator-marginTop: 16px; /* Space above indicators */
|
|
406
|
+
--carousel-indicator-background-default: #d4d4d4; /* Indicator background */
|
|
407
|
+
--carousel-indicator-background-active: #11162d; /* Active indicator background */
|
|
408
|
+
--carousel-indicator-background-hover: #a3a3a3; /* Indicator hover background */
|
|
409
|
+
--carousel-transition-duration: 300ms; /* Slide transition duration */
|
|
410
|
+
--chart-container-background: #11162d; /* Chart container background */
|
|
411
|
+
--chart-container-padding: 16px; /* Chart container padding */
|
|
412
|
+
--chart-container-radius: 5px; /* Chart container border radius */
|
|
413
|
+
--chart-container-border-color: #1a2244; /* Chart container border color */
|
|
414
|
+
--chart-container-border-width: 1px; /* Chart container border width */
|
|
415
|
+
--chart-title-color: #ffffff; /* Chart title color */
|
|
416
|
+
--chart-title-size: 16px; /* Chart title font size */
|
|
417
|
+
--chart-title-weight: 600; /* Chart title font weight */
|
|
418
|
+
--chart-title-marginBottom: 16px; /* Space below chart title */
|
|
419
|
+
--chart-canvas-minHeight: 300px; /* Minimum chart canvas height */
|
|
420
|
+
--chart-legend-gap: 16px; /* Gap between legend items */
|
|
421
|
+
--chart-legend-item-gap: 6px; /* Gap between legend marker and text */
|
|
422
|
+
--chart-legend-item-color: #7680a9; /* Legend text color */
|
|
423
|
+
--chart-legend-item-size: 13px; /* Legend text font size */
|
|
424
|
+
--chart-legend-marker-size: 12px; /* Legend marker size */
|
|
425
|
+
--chart-legend-marker-radius: 2px; /* Legend marker border radius */
|
|
426
|
+
--chart-loading-background: rgba(0, 0, 0, 0.6); /* Loading overlay background */
|
|
427
|
+
--chart-loading-spinnerColor: #11162d; /* Loading spinner color */
|
|
428
|
+
--chart-loading-spinnerSize: 32px; /* Loading spinner size */
|
|
429
|
+
--chart-empty-textColor: #7680a9; /* Empty state text color */
|
|
430
|
+
--chart-empty-iconColor: #525d8f; /* Empty state icon color */
|
|
431
|
+
--chart-empty-iconSize: 48px; /* Empty state icon size */
|
|
432
|
+
--checkbox-size-sm: 16px; /* Small checkbox */
|
|
433
|
+
--checkbox-size-md: 20px; /* Medium checkbox (default) */
|
|
434
|
+
--checkbox-size-lg: 24px; /* Large checkbox */
|
|
435
|
+
--checkbox-iconSize-sm: 10px;
|
|
436
|
+
--checkbox-iconSize-md: 12px;
|
|
437
|
+
--checkbox-iconSize-lg: 16px;
|
|
438
|
+
--checkbox-radius: 2px; /* Checkbox border radius */
|
|
439
|
+
--checkbox-border-width: 2px;
|
|
440
|
+
--checkbox-border-color-default: #2e3b75; /* Visible on dark backgrounds */
|
|
441
|
+
--checkbox-border-color-hover: #525d8f;
|
|
442
|
+
--checkbox-border-color-checked: #f97316; /* Accent color when checked */
|
|
443
|
+
--checkbox-border-color-focus: #f97316;
|
|
444
|
+
--checkbox-border-color-disabled: #1a2244;
|
|
445
|
+
--checkbox-border-color-error: #ef4444;
|
|
446
|
+
--checkbox-background-default: transparent; /* Transparent to show dark page background */
|
|
447
|
+
--checkbox-background-checked: #f97316; /* Bright accent for visibility on dark backgrounds */
|
|
448
|
+
--checkbox-background-disabled: #11162d;
|
|
449
|
+
--checkbox-background-hover: #11162d;
|
|
450
|
+
--checkbox-checkmark-color: #ffffff;
|
|
451
|
+
--checkbox-label-gap: 10px;
|
|
452
|
+
--checkbox-label-color-default: #ffffff;
|
|
453
|
+
--checkbox-label-color-disabled: #7680a9;
|
|
454
|
+
--checkbox-focus-ringWidth: 2px;
|
|
455
|
+
--checkbox-focus-ringColor: #f97316;
|
|
456
|
+
--checkbox-focus-ringOffset: 2px;
|
|
457
|
+
--chip-padding-x: 10px; /* Horizontal padding */
|
|
458
|
+
--chip-padding-y: 4px; /* Vertical padding */
|
|
459
|
+
--chip-gap: 4px; /* Gap between chip elements */
|
|
460
|
+
--chip-radius: 9999px; /* Border radius (pill shape) */
|
|
461
|
+
--chip-background-default: #060813; /* Default chip background */
|
|
462
|
+
--chip-background-hover: #e5e5e5; /* Hover background for removable chips */
|
|
463
|
+
--chip-text-color: #ffffff; /* Chip text color */
|
|
464
|
+
--chip-text-fontSize: 14px; /* Chip text size */
|
|
465
|
+
--chip-icon-size: 16px; /* Icon size */
|
|
466
|
+
--chip-icon-color: #7680a9; /* Icon color */
|
|
467
|
+
--chip-image-size: 24px; /* Avatar/image size */
|
|
468
|
+
--chip-remove-size: 16px; /* Remove button size */
|
|
469
|
+
--chip-remove-color-default: #7680a9; /* Remove icon default color */
|
|
470
|
+
--chip-remove-color-hover: #ffffff; /* Remove icon hover color */
|
|
471
|
+
--chip-remove-background-hover: #d4d4d4; /* Remove button hover background */
|
|
472
|
+
--chip-remove-radius: 9999px; /* Remove button border radius */
|
|
473
|
+
--color-picker-width: 240px;
|
|
474
|
+
--color-picker-padding: 16px;
|
|
475
|
+
--color-picker-gap: 16px;
|
|
476
|
+
--color-picker-radius: 5px;
|
|
477
|
+
--color-picker-background: #0a0e1f;
|
|
478
|
+
--color-picker-border-width: 1px;
|
|
479
|
+
--color-picker-border-color: #e5e5e5;
|
|
480
|
+
--color-picker-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
481
|
+
--color-picker-trigger-size-sm: 24px;
|
|
482
|
+
--color-picker-trigger-size-md: 32px;
|
|
483
|
+
--color-picker-trigger-size-lg: 40px;
|
|
484
|
+
--color-picker-trigger-radius: 5px;
|
|
485
|
+
--color-picker-trigger-border-width: 1px;
|
|
486
|
+
--color-picker-trigger-border-color-default: #d4d4d4;
|
|
487
|
+
--color-picker-trigger-border-color-hover: #a3a3a3;
|
|
488
|
+
--color-picker-trigger-border-color-focus: #11162d;
|
|
489
|
+
--color-picker-gradient-height: 150px;
|
|
490
|
+
--color-picker-gradient-radius: 2px;
|
|
491
|
+
--color-picker-hue-height: 12px;
|
|
492
|
+
--color-picker-hue-radius: 9999px;
|
|
493
|
+
--color-picker-slider-size: 16px;
|
|
494
|
+
--color-picker-slider-border-width: 2px;
|
|
495
|
+
--color-picker-slider-border-color: #ffffff;
|
|
496
|
+
--color-picker-slider-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
|
|
497
|
+
--color-picker-input-height: 32px;
|
|
498
|
+
--color-picker-input-padding-x: 10px;
|
|
499
|
+
--color-picker-input-radius: 2px;
|
|
500
|
+
--color-picker-input-fontSize: 13px;
|
|
501
|
+
--color-picker-input-background: #0a0e1f;
|
|
502
|
+
--color-picker-input-border-color: #d4d4d4;
|
|
503
|
+
--color-picker-input-text: #ffffff;
|
|
504
|
+
--color-picker-preset-size: 24px;
|
|
505
|
+
--color-picker-preset-gap: 6px;
|
|
506
|
+
--color-picker-preset-radius: 2px;
|
|
507
|
+
--color-picker-preset-border-width: 2px;
|
|
508
|
+
--color-picker-preset-border-color-default: transparent;
|
|
509
|
+
--color-picker-preset-border-color-selected: #11162d;
|
|
510
|
+
--color-picker-focus-ringWidth: 2px;
|
|
511
|
+
--color-picker-focus-ringColor: #11162d;
|
|
512
|
+
--color-picker-focus-ringOffset: 1px;
|
|
513
|
+
--column-group-header-background: #060813; /* Column group header background */
|
|
514
|
+
--column-group-header-borderColor: #1a2244; /* Column group header border color */
|
|
515
|
+
--column-group-header-borderWidth: 1px; /* Column group header border width */
|
|
516
|
+
--column-group-footer-background: #060813; /* Column group footer background */
|
|
517
|
+
--column-group-footer-borderColor: #1a2244; /* Column group footer border color */
|
|
518
|
+
--column-group-footer-borderWidth: 1px; /* Column group footer border width */
|
|
519
|
+
--column-group-row-borderColor: #1a2244; /* Row border color within group */
|
|
520
|
+
--column-header-background: #060813; /* Column header background color */
|
|
521
|
+
--column-header-color: #ffffff; /* Column header text color */
|
|
522
|
+
--column-header-padding: 10px; /* Column header padding */
|
|
523
|
+
--column-header-fontWeight: 600; /* Column header font weight */
|
|
524
|
+
--column-header-fontSize: 13px; /* Column header font size */
|
|
525
|
+
--column-header-borderColor: #1a2244; /* Column header border color */
|
|
526
|
+
--column-body-background: #11162d; /* Column body background color */
|
|
527
|
+
--column-body-color: #ffffff; /* Column body text color */
|
|
528
|
+
--column-body-padding: 10px; /* Column body padding */
|
|
529
|
+
--column-body-fontSize: 14px; /* Column body font size */
|
|
530
|
+
--column-body-borderColor: #1a2244; /* Column body border color */
|
|
531
|
+
--column-footer-background: #060813; /* Column footer background color */
|
|
532
|
+
--column-footer-color: #ffffff; /* Column footer text color */
|
|
533
|
+
--column-footer-padding: 10px; /* Column footer padding */
|
|
534
|
+
--column-footer-fontWeight: 600; /* Column footer font weight */
|
|
535
|
+
--column-footer-borderColor: #1a2244; /* Column footer border color */
|
|
536
|
+
--column-sortIcon-color-default: #a3a3a3; /* Sort icon default color */
|
|
537
|
+
--column-sortIcon-color-active: #11162d; /* Sort icon active color */
|
|
538
|
+
--column-sortIcon-size: 14px; /* Sort icon size */
|
|
539
|
+
--confirmDialog-padding-header: 26px; /* Header section padding */
|
|
540
|
+
--confirmDialog-padding-content: 26px; /* Content area padding */
|
|
541
|
+
--confirmDialog-padding-footer: 26px; /* Footer section padding */
|
|
542
|
+
--confirmDialog-background-default: #0a0e1f; /* Dialog background color */
|
|
543
|
+
--confirmDialog-radius: 13px; /* Dialog border radius */
|
|
544
|
+
--confirmDialog-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Dialog elevation shadow */
|
|
545
|
+
--confirmDialog-border-color: #1a2244; /* Dialog border color */
|
|
546
|
+
--confirmDialog-border-width: 1px; /* Dialog border width */
|
|
547
|
+
--confirmDialog-header-background: #0a0e1f; /* Header background */
|
|
548
|
+
--confirmDialog-header-borderColor: #1a2244; /* Header bottom border color */
|
|
549
|
+
--confirmDialog-header-title-color: #ffffff; /* Header title text color */
|
|
550
|
+
--confirmDialog-icon-size: 48px; /* Icon size */
|
|
551
|
+
--confirmDialog-icon-color-warning: #f59e0b; /* Warning icon color */
|
|
552
|
+
--confirmDialog-icon-color-danger: #ef4444; /* Danger icon color */
|
|
553
|
+
--confirmDialog-icon-color-info: #3b82f6; /* Info icon color */
|
|
554
|
+
--confirmDialog-message-color: #ffffff; /* Message text color */
|
|
555
|
+
--confirmDialog-message-fontSize: 16px; /* Message font size */
|
|
556
|
+
--confirmDialog-overlay-background: rgba(0, 0, 0, 0.6); /* Modal overlay backdrop color */
|
|
557
|
+
--confirmDialog-width: 450px; /* Dialog width */
|
|
558
|
+
--confirmDialog-zIndex-overlay: 1000; /* Overlay z-index */
|
|
559
|
+
--confirmDialog-zIndex-dialog: 1001; /* Dialog z-index */
|
|
560
|
+
--confirmDialog-gap-content: 16px; /* Gap between icon and message */
|
|
561
|
+
--confirmDialog-gap-buttons: 10px; /* Gap between footer buttons */
|
|
562
|
+
--confirmPopup-padding-x: 16px; /* Horizontal padding */
|
|
563
|
+
--confirmPopup-padding-y: 10px; /* Vertical padding */
|
|
564
|
+
--confirmPopup-background: #0a0e1f; /* Popup background color */
|
|
565
|
+
--confirmPopup-radius: 5px; /* Popup border radius */
|
|
566
|
+
--confirmPopup-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Popup elevation shadow */
|
|
567
|
+
--confirmPopup-border-color: #1a2244; /* Popup border color */
|
|
568
|
+
--confirmPopup-border-width: 1px; /* Popup border width */
|
|
569
|
+
--confirmPopup-message-color: #ffffff; /* Message text color */
|
|
570
|
+
--confirmPopup-message-fontSize: 14px; /* Message font size */
|
|
571
|
+
--confirmPopup-icon-size: 20px; /* Icon size */
|
|
572
|
+
--confirmPopup-icon-color: #f59e0b; /* Icon color */
|
|
573
|
+
--confirmPopup-arrow-size: 8px; /* Arrow/pointer size */
|
|
574
|
+
--confirmPopup-offset: 10px; /* Distance from target element */
|
|
575
|
+
--confirmPopup-maxWidth: 300px; /* Maximum width */
|
|
576
|
+
--confirmPopup-zIndex: 1100; /* Z-index for stacking */
|
|
577
|
+
--confirmPopup-gap-content: 10px; /* Gap between icon/message and buttons */
|
|
578
|
+
--confirmPopup-gap-buttons: 6px; /* Gap between buttons */
|
|
579
|
+
--context-menu-background: #1a2244; /* Context menu background */
|
|
580
|
+
--context-menu-border-color: #1a2244; /* Context menu border color */
|
|
581
|
+
--context-menu-border-width: 1px; /* Context menu border width */
|
|
582
|
+
--context-menu-radius: 5px; /* Context menu border radius */
|
|
583
|
+
--context-menu-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Context menu elevation shadow */
|
|
584
|
+
--context-menu-padding-y: 4px; /* Vertical padding */
|
|
585
|
+
--context-menu-minWidth: 180px; /* Minimum menu width */
|
|
586
|
+
--context-menu-maxWidth: 320px; /* Maximum menu width */
|
|
587
|
+
--context-menu-zIndex: 1100; /* Z-index for stacking */
|
|
588
|
+
--context-menu-item-padding-x: 16px; /* Item horizontal padding */
|
|
589
|
+
--context-menu-item-padding-y: 6px; /* Item vertical padding */
|
|
590
|
+
--context-menu-item-text-color-default: #ffffff; /* Item text color */
|
|
591
|
+
--context-menu-item-text-color-hover: #ffffff; /* Item hover text color */
|
|
592
|
+
--context-menu-item-text-color-disabled: #525d8f; /* Disabled item text color */
|
|
593
|
+
--context-menu-item-text-fontSize: 14px; /* Item font size */
|
|
594
|
+
--context-menu-item-background-default: transparent; /* Item background */
|
|
595
|
+
--context-menu-item-background-hover: #060813; /* Item hover background */
|
|
596
|
+
--context-menu-item-background-active: #060813; /* Active item background */
|
|
597
|
+
--context-menu-item-icon-size: 16px; /* Item icon size */
|
|
598
|
+
--context-menu-item-icon-color: #7680a9; /* Item icon color */
|
|
599
|
+
--context-menu-item-icon-gap: 10px; /* Space between icon and label */
|
|
600
|
+
--context-menu-item-shortcut-color: #7680a9; /* Keyboard shortcut color */
|
|
601
|
+
--context-menu-item-shortcut-fontSize: 12px; /* Shortcut font size */
|
|
602
|
+
--context-menu-separator-color: #1a2244; /* Separator line color */
|
|
603
|
+
--context-menu-separator-margin: 4px; /* Separator vertical margin */
|
|
604
|
+
--context-menu-submenu-arrow-size: 10px; /* Submenu arrow size */
|
|
605
|
+
--context-menu-submenu-arrow-color: #7680a9; /* Submenu arrow color */
|
|
606
|
+
--context-menu-submenu-offset: -4px; /* Submenu position offset */
|
|
607
|
+
--dataTable-background: #11162d; /* Table background color */
|
|
608
|
+
--dataTable-border-color: #1a2244; /* Table border color */
|
|
609
|
+
--dataTable-border-width: 1px; /* Table border width */
|
|
610
|
+
--dataTable-radius: 5px; /* Table border radius */
|
|
611
|
+
--dataTable-header-background: #060813; /* Header background color */
|
|
612
|
+
--dataTable-header-color: #ffffff; /* Header text color */
|
|
613
|
+
--dataTable-header-padding: 16px; /* Header cell padding */
|
|
614
|
+
--dataTable-header-fontSize: 14px; /* Header font size */
|
|
615
|
+
--dataTable-header-fontWeight: 600; /* Header font weight */
|
|
616
|
+
--dataTable-header-borderColor: #1a2244; /* Header border color */
|
|
617
|
+
--dataTable-body-background-default: #11162d; /* Row background color */
|
|
618
|
+
--dataTable-body-background-hover: #060813; /* Row hover background */
|
|
619
|
+
--dataTable-body-background-striped: #fafafa; /* Alternate row background */
|
|
620
|
+
--dataTable-body-color: #ffffff; /* Body text color */
|
|
621
|
+
--dataTable-body-padding: 16px; /* Body cell padding */
|
|
622
|
+
--dataTable-body-fontSize: 14px; /* Body font size */
|
|
623
|
+
--dataTable-body-borderColor: #1a2244; /* Row border color */
|
|
624
|
+
--dataTable-sortIcon-size: 14px; /* Sort icon size */
|
|
625
|
+
--dataTable-sortIcon-color-default: #7680a9; /* Sort icon default color */
|
|
626
|
+
--dataTable-sortIcon-color-active: #ffffff; /* Sort icon active color */
|
|
627
|
+
--dataTable-pagination-padding: 16px; /* Pagination area padding */
|
|
628
|
+
--dataTable-pagination-gap: 6px; /* Gap between pagination elements */
|
|
629
|
+
--dataTable-pagination-background: #060813; /* Pagination background */
|
|
630
|
+
--dataTable-pagination-borderColor: #1a2244; /* Pagination border color */
|
|
631
|
+
--dataTable-empty-padding: 42px; /* Empty state padding */
|
|
632
|
+
--dataTable-empty-color: #7680a9; /* Empty state text color */
|
|
633
|
+
--dataTable-transition-duration: 150ms; /* Animation duration */
|
|
634
|
+
--dataView-background: #11162d; /* DataView container background */
|
|
635
|
+
--dataView-border-color: #1a2244; /* Container border color */
|
|
636
|
+
--dataView-border-width: 1px; /* Container border width */
|
|
637
|
+
--dataView-radius: 5px; /* Container border radius */
|
|
638
|
+
--dataView-header-background: #060813; /* Header background color */
|
|
639
|
+
--dataView-header-padding: 16px; /* Header padding */
|
|
640
|
+
--dataView-header-borderColor: #1a2244; /* Header border color */
|
|
641
|
+
--dataView-content-padding: 16px; /* Content area padding */
|
|
642
|
+
--dataView-grid-gap: 16px; /* Gap between grid items */
|
|
643
|
+
--dataView-list-gap: 10px; /* Gap between list items */
|
|
644
|
+
--dataView-list-item-padding: 16px; /* List item padding */
|
|
645
|
+
--dataView-list-item-background-default: transparent; /* List item background */
|
|
646
|
+
--dataView-list-item-background-hover: #060813; /* List item hover background */
|
|
647
|
+
--dataView-list-item-borderColor: #1a2244; /* List item border color */
|
|
648
|
+
--dataView-list-item-radius: 2px; /* List item border radius */
|
|
649
|
+
--dataView-layoutSwitcher-gap: 4px; /* Gap between layout buttons */
|
|
650
|
+
--dataView-layoutSwitcher-button-size: 32px; /* Layout button size */
|
|
651
|
+
--dataView-layoutSwitcher-button-background-default: transparent; /* Button default background */
|
|
652
|
+
--dataView-layoutSwitcher-button-background-active: #060813; /* Button active background */
|
|
653
|
+
--dataView-layoutSwitcher-button-background-hover: #f5f5f5; /* Button hover background */
|
|
654
|
+
--dataView-layoutSwitcher-button-color-default: #7680a9; /* Button icon default color */
|
|
655
|
+
--dataView-layoutSwitcher-button-color-active: #ffffff; /* Button icon active color */
|
|
656
|
+
--dataView-layoutSwitcher-button-radius: 2px; /* Button border radius */
|
|
657
|
+
--dataView-pagination-padding: 16px; /* Pagination padding */
|
|
658
|
+
--dataView-pagination-borderColor: #1a2244; /* Pagination border color */
|
|
659
|
+
--dataView-empty-padding: 42px; /* Empty state padding */
|
|
660
|
+
--dataView-empty-color: #7680a9; /* Empty state text color */
|
|
661
|
+
--dataView-transition-duration: 150ms; /* Animation duration */
|
|
662
|
+
--dialog-padding-header: 26px; /* Header section padding */
|
|
663
|
+
--dialog-padding-content: 26px; /* Content area padding */
|
|
664
|
+
--dialog-padding-footer: 26px; /* Footer section padding */
|
|
665
|
+
--dialog-background-default: #0a0e1f; /* Dialog background color */
|
|
666
|
+
--dialog-radius: 13px; /* Dialog border radius */
|
|
667
|
+
--dialog-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Dialog elevation shadow */
|
|
668
|
+
--dialog-border-color: #1a2244; /* Dialog border color */
|
|
669
|
+
--dialog-border-width: 1px; /* Dialog border width */
|
|
670
|
+
--dialog-header-background: #0a0e1f; /* Header background */
|
|
671
|
+
--dialog-header-borderColor: #1a2244; /* Header bottom border color */
|
|
672
|
+
--dialog-header-title-color: #ffffff; /* Header title text color */
|
|
673
|
+
--dialog-closeButton-size: 32px; /* Close button size */
|
|
674
|
+
--dialog-closeButton-iconSize: 16px; /* Close icon size */
|
|
675
|
+
--dialog-closeButton-color-default: #7680a9; /* Close button icon color */
|
|
676
|
+
--dialog-closeButton-color-hover: #ffffff; /* Close button hover color */
|
|
677
|
+
--dialog-closeButton-background-hover: #060813; /* Close button hover background */
|
|
678
|
+
--dialog-closeButton-radius: 5px; /* Close button border radius */
|
|
679
|
+
--dialog-overlay-background: rgba(0, 0, 0, 0.6); /* Modal overlay backdrop color */
|
|
680
|
+
--dialog-width-sm: 400px; /* Small dialog width */
|
|
681
|
+
--dialog-width-md: 560px; /* Medium dialog width (default) */
|
|
682
|
+
--dialog-width-lg: 720px; /* Large dialog width */
|
|
683
|
+
--dialog-width-xl: 960px; /* Extra large dialog width */
|
|
684
|
+
--dialog-maxHeight: 90vh; /* Maximum dialog height */
|
|
685
|
+
--dialog-zIndex-overlay: 1000; /* Overlay z-index */
|
|
686
|
+
--dialog-zIndex-dialog: 1001; /* Dialog z-index */
|
|
687
|
+
--divider-border-color: #e5e5e5; /* Default divider border color */
|
|
688
|
+
--divider-border-width: 1px; /* Default divider border width */
|
|
689
|
+
--divider-margin-horizontal: 16px; /* Vertical margin for horizontal dividers */
|
|
690
|
+
--divider-margin-vertical: 16px; /* Horizontal margin for vertical dividers */
|
|
691
|
+
--divider-content-gap: 16px; /* Gap between divider line and content */
|
|
692
|
+
--divider-content-color: #737373; /* Color of content text within divider */
|
|
693
|
+
--divider-content-background: #ffffff; /* Background behind content to cover the line */
|
|
694
|
+
--dock-background: #1a2244; /* Dock background */
|
|
695
|
+
--dock-border-color: #1a2244; /* Dock border color */
|
|
696
|
+
--dock-border-width: 1px; /* Dock border width */
|
|
697
|
+
--dock-radius: 13px; /* Dock border radius */
|
|
698
|
+
--dock-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Dock elevation shadow */
|
|
699
|
+
--dock-padding: 10px; /* Dock inner padding */
|
|
700
|
+
--dock-gap: 4px; /* Gap between dock items */
|
|
701
|
+
--dock-zIndex: 1000; /* Z-index for stacking */
|
|
702
|
+
--dock-position-offset: 16px; /* Distance from screen edge */
|
|
703
|
+
--dock-item-size-default: 48px; /* Default item size */
|
|
704
|
+
--dock-item-size-magnified: 72px; /* Magnified item size on hover */
|
|
705
|
+
--dock-item-radius: 8px; /* Item border radius */
|
|
706
|
+
--dock-item-background-default: transparent; /* Item background */
|
|
707
|
+
--dock-item-background-hover: #060813; /* Item hover background */
|
|
708
|
+
--dock-item-background-active: #060813; /* Active item background */
|
|
709
|
+
--dock-item-icon-size-default: 28px; /* Default icon size */
|
|
710
|
+
--dock-item-icon-size-magnified: 42px; /* Magnified icon size */
|
|
711
|
+
--dock-item-icon-color-default: #ffffff; /* Icon color */
|
|
712
|
+
--dock-item-icon-color-hover: #11162d; /* Icon hover color */
|
|
713
|
+
--dock-tooltip-offset: 6px; /* Tooltip distance from dock */
|
|
714
|
+
--dock-tooltip-background: #ffffff; /* Tooltip background */
|
|
715
|
+
--dock-tooltip-text-color: #0a0e1f; /* Tooltip text color */
|
|
716
|
+
--dock-tooltip-text-fontSize: 12px; /* Tooltip font size */
|
|
717
|
+
--dock-tooltip-padding-x: 10px; /* Tooltip horizontal padding */
|
|
718
|
+
--dock-tooltip-padding-y: 4px; /* Tooltip vertical padding */
|
|
719
|
+
--dock-tooltip-radius: 2px; /* Tooltip border radius */
|
|
720
|
+
--dock-indicator-size: 4px; /* Active indicator dot size */
|
|
721
|
+
--dock-indicator-color: #11162d; /* Active indicator color */
|
|
722
|
+
--dock-indicator-gap: 4px; /* Gap between item and indicator */
|
|
723
|
+
--drawer-background: #0a0e1f; /* Drawer background color */
|
|
724
|
+
--drawer-border-color: #1a2244; /* Drawer border color */
|
|
725
|
+
--drawer-border-width: 1px; /* Drawer border width */
|
|
726
|
+
--drawer-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Drawer shadow */
|
|
727
|
+
--drawer-header-padding: 26px; /* Header section padding */
|
|
728
|
+
--drawer-header-background: #0a0e1f; /* Header background */
|
|
729
|
+
--drawer-header-borderColor: #1a2244; /* Header bottom border color */
|
|
730
|
+
--drawer-header-title-color: #ffffff; /* Header title text color */
|
|
731
|
+
--drawer-header-title-fontSize: 18px; /* Header title font size */
|
|
732
|
+
--drawer-header-title-fontWeight: 600; /* Header title font weight */
|
|
733
|
+
--drawer-content-padding: 26px; /* Content area padding */
|
|
734
|
+
--drawer-footer-padding: 26px; /* Footer section padding */
|
|
735
|
+
--drawer-footer-borderColor: #1a2244; /* Footer top border color */
|
|
736
|
+
--drawer-closeButton-size: 32px; /* Close button size */
|
|
737
|
+
--drawer-closeButton-iconSize: 16px; /* Close icon size */
|
|
738
|
+
--drawer-closeButton-color-default: #7680a9; /* Close button icon color */
|
|
739
|
+
--drawer-closeButton-color-hover: #ffffff; /* Close button hover color */
|
|
740
|
+
--drawer-closeButton-background-hover: #060813; /* Close button hover background */
|
|
741
|
+
--drawer-closeButton-radius: 5px; /* Close button border radius */
|
|
742
|
+
--drawer-overlay-background: rgba(0, 0, 0, 0.6); /* Overlay backdrop color */
|
|
743
|
+
--drawer-size-sm: 280px; /* Small drawer size */
|
|
744
|
+
--drawer-size-md: 400px; /* Medium drawer size (default) */
|
|
745
|
+
--drawer-size-lg: 560px; /* Large drawer size */
|
|
746
|
+
--drawer-size-xl: 720px; /* Extra large drawer size */
|
|
747
|
+
--drawer-zIndex-overlay: 1000; /* Overlay z-index */
|
|
748
|
+
--drawer-zIndex-drawer: 1001; /* Drawer z-index */
|
|
749
|
+
--drawer-transition-duration: 300ms; /* Slide animation duration */
|
|
750
|
+
--dropdown-height-sm: 32px;
|
|
751
|
+
--dropdown-height-md: 40px;
|
|
752
|
+
--dropdown-height-lg: 48px;
|
|
753
|
+
--dropdown-padding-x: 16px;
|
|
754
|
+
--dropdown-padding-y: 10px;
|
|
755
|
+
--dropdown-fontSize-sm: 14px;
|
|
756
|
+
--dropdown-fontSize-md: 15px;
|
|
757
|
+
--dropdown-fontSize-lg: 16px;
|
|
758
|
+
--dropdown-radius: 5px;
|
|
759
|
+
--dropdown-border-width: 1px;
|
|
760
|
+
--dropdown-border-color-default: #d4d4d4;
|
|
761
|
+
--dropdown-border-color-hover: #a3a3a3;
|
|
762
|
+
--dropdown-border-color-focus: #11162d;
|
|
763
|
+
--dropdown-border-color-disabled: #e5e5e5;
|
|
764
|
+
--dropdown-border-color-error: #ef4444;
|
|
765
|
+
--dropdown-background-default: #0a0e1f;
|
|
766
|
+
--dropdown-background-disabled: #f5f5f5;
|
|
767
|
+
--dropdown-background-hover: #0a0e1f;
|
|
768
|
+
--dropdown-text-default: #ffffff;
|
|
769
|
+
--dropdown-text-placeholder: #7680a9;
|
|
770
|
+
--dropdown-text-disabled: #7680a9;
|
|
771
|
+
--dropdown-icon-size: 16px;
|
|
772
|
+
--dropdown-icon-color-default: #737373;
|
|
773
|
+
--dropdown-icon-color-disabled: #d4d4d4;
|
|
774
|
+
--dropdown-panel-background: #0a0e1f;
|
|
775
|
+
--dropdown-panel-border: #e5e5e5;
|
|
776
|
+
--dropdown-panel-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
777
|
+
--dropdown-panel-radius: 5px;
|
|
778
|
+
--dropdown-panel-maxHeight: 280px;
|
|
779
|
+
--dropdown-panel-padding: 6px;
|
|
780
|
+
--dropdown-filter-height: 36px;
|
|
781
|
+
--dropdown-filter-padding-x: 10px;
|
|
782
|
+
--dropdown-filter-background: #0a0e1f;
|
|
783
|
+
--dropdown-filter-border: #e5e5e5;
|
|
784
|
+
--dropdown-filter-radius: 5px;
|
|
785
|
+
--dropdown-filter-marginBottom: 6px;
|
|
786
|
+
--dropdown-option-padding-x: 16px;
|
|
787
|
+
--dropdown-option-padding-y: 10px;
|
|
788
|
+
--dropdown-option-radius: 2px;
|
|
789
|
+
--dropdown-option-background-default: transparent;
|
|
790
|
+
--dropdown-option-background-hover: #f5f5f5;
|
|
791
|
+
--dropdown-option-background-selected: #11162d;
|
|
792
|
+
--dropdown-option-background-focus: #f5f5f5;
|
|
793
|
+
--dropdown-option-text-default: #ffffff;
|
|
794
|
+
--dropdown-option-text-selected: #ffffff;
|
|
795
|
+
--dropdown-focus-ringWidth: 2px;
|
|
796
|
+
--dropdown-focus-ringColor: #11162d;
|
|
797
|
+
--dropdown-focus-ringOffset: 1px;
|
|
798
|
+
--editor-minHeight: 200px;
|
|
799
|
+
--editor-radius: 5px;
|
|
800
|
+
--editor-border-width: 1px;
|
|
801
|
+
--editor-border-color-default: #d4d4d4;
|
|
802
|
+
--editor-border-color-hover: #a3a3a3;
|
|
803
|
+
--editor-border-color-focus: #11162d;
|
|
804
|
+
--editor-border-color-disabled: #e5e5e5;
|
|
805
|
+
--editor-border-color-error: #ef4444;
|
|
806
|
+
--editor-background-default: #0a0e1f;
|
|
807
|
+
--editor-background-disabled: #f5f5f5;
|
|
808
|
+
--editor-toolbar-padding-x: 10px;
|
|
809
|
+
--editor-toolbar-padding-y: 6px;
|
|
810
|
+
--editor-toolbar-gap: 6px;
|
|
811
|
+
--editor-toolbar-background: #060813;
|
|
812
|
+
--editor-toolbar-border-color: #e5e5e5;
|
|
813
|
+
--editor-button-size: 32px;
|
|
814
|
+
--editor-button-radius: 2px;
|
|
815
|
+
--editor-button-background-default: transparent;
|
|
816
|
+
--editor-button-background-hover: #e5e5e5;
|
|
817
|
+
--editor-button-background-active: #d4d4d4;
|
|
818
|
+
--editor-button-color-default: #ffffff;
|
|
819
|
+
--editor-button-color-active: #11162d;
|
|
820
|
+
--editor-button-color-disabled: #7680a9;
|
|
821
|
+
--editor-separator-width: 1px;
|
|
822
|
+
--editor-separator-color: #d4d4d4;
|
|
823
|
+
--editor-separator-margin: 6px;
|
|
824
|
+
--editor-content-padding: 16px;
|
|
825
|
+
--editor-content-text-default: #ffffff;
|
|
826
|
+
--editor-content-text-placeholder: #7680a9;
|
|
827
|
+
--editor-content-text-disabled: #7680a9;
|
|
828
|
+
--editor-content-fontSize: 15px;
|
|
829
|
+
--editor-content-lineHeight: 1.6;
|
|
830
|
+
--editor-focus-ringWidth: 2px;
|
|
831
|
+
--editor-focus-ringColor: #11162d;
|
|
832
|
+
--editor-focus-ringOffset: 1px;
|
|
833
|
+
--field-set-padding: 26px; /* Content padding */
|
|
834
|
+
--field-set-background: #0a0e1f; /* FieldSet background color */
|
|
835
|
+
--field-set-border-color: #1a2244; /* Border color */
|
|
836
|
+
--field-set-border-width: 1px; /* Border width */
|
|
837
|
+
--field-set-border-radius: 5px; /* Border radius */
|
|
838
|
+
--field-set-legend-padding-x: 16px; /* Legend horizontal padding */
|
|
839
|
+
--field-set-legend-padding-y: 10px; /* Legend vertical padding */
|
|
840
|
+
--field-set-legend-background: #11162d; /* Legend background */
|
|
841
|
+
--field-set-legend-color: #ffffff; /* Legend text color */
|
|
842
|
+
--field-set-legend-fontSize: 14px; /* Legend font size */
|
|
843
|
+
--field-set-legend-fontWeight: 600; /* Legend font weight */
|
|
844
|
+
--field-set-legend-border-color: #1a2244; /* Legend border color */
|
|
845
|
+
--field-set-legend-border-width: 1px; /* Legend border width */
|
|
846
|
+
--field-set-legend-border-radius: 5px; /* Legend border radius */
|
|
847
|
+
--field-set-toggle-icon-size: 16px; /* Toggle icon size */
|
|
848
|
+
--field-set-toggle-icon-color-default: #7680a9; /* Toggle icon color */
|
|
849
|
+
--field-set-toggle-icon-color-hover: #ffffff; /* Toggle icon hover color */
|
|
850
|
+
--field-set-toggle-gap: 10px; /* Gap between legend text and toggle icon */
|
|
851
|
+
--field-set-transition-duration: 200ms; /* Collapse/expand transition duration */
|
|
852
|
+
--fileUpload-dropzone-background-default: #11162d; /* Dropzone background color */
|
|
853
|
+
--fileUpload-dropzone-background-hover: #060813; /* Dropzone hover background */
|
|
854
|
+
--fileUpload-dropzone-background-active: #78350f; /* Dropzone active/dragging background */
|
|
855
|
+
--fileUpload-dropzone-border-color-default: #1a2244; /* Dropzone border color */
|
|
856
|
+
--fileUpload-dropzone-border-color-hover: #242e5c; /* Dropzone hover border color */
|
|
857
|
+
--fileUpload-dropzone-border-color-active: #11162d; /* Dropzone active border color */
|
|
858
|
+
--fileUpload-dropzone-border-width: 2px; /* Dropzone border width */
|
|
859
|
+
--fileUpload-dropzone-border-style: dashed; /* Dropzone border style */
|
|
860
|
+
--fileUpload-dropzone-radius: 5px; /* Dropzone border radius */
|
|
861
|
+
--fileUpload-dropzone-padding: 42px; /* Dropzone padding */
|
|
862
|
+
--fileUpload-icon-size: 48px; /* Upload icon size */
|
|
863
|
+
--fileUpload-icon-color-default: #7680a9; /* Upload icon color */
|
|
864
|
+
--fileUpload-icon-color-active: #11162d; /* Upload icon color when dragging */
|
|
865
|
+
--fileUpload-text-primary-color: #ffffff; /* Primary text color */
|
|
866
|
+
--fileUpload-text-primary-size: 16px; /* Primary text font size */
|
|
867
|
+
--fileUpload-text-secondary-color: #7680a9; /* Secondary text color */
|
|
868
|
+
--fileUpload-text-secondary-size: 14px; /* Secondary text font size */
|
|
869
|
+
--fileUpload-fileList-gap: 10px; /* Gap between file items */
|
|
870
|
+
--fileUpload-fileList-item-background: #060813; /* File item background */
|
|
871
|
+
--fileUpload-fileList-item-padding: 10px; /* File item padding */
|
|
872
|
+
--fileUpload-fileList-item-radius: 5px; /* File item border radius */
|
|
873
|
+
--fileUpload-fileList-item-border-color: #1a2244; /* File item border color */
|
|
874
|
+
--fileUpload-fileList-item-border-width: 1px; /* File item border width */
|
|
875
|
+
--fileUpload-fileList-fileName-color: #ffffff; /* File name color */
|
|
876
|
+
--fileUpload-fileList-fileName-size: 14px; /* File name font size */
|
|
877
|
+
--fileUpload-fileList-fileSize-color: #7680a9; /* File size color */
|
|
878
|
+
--fileUpload-fileList-fileSize-size: 12px; /* File size font size */
|
|
879
|
+
--fileUpload-fileList-removeButton-color-default: #7680a9; /* Remove button color */
|
|
880
|
+
--fileUpload-fileList-removeButton-color-hover: #ef4444; /* Remove button hover color */
|
|
881
|
+
--fileUpload-fileList-removeButton-size: 20px; /* Remove button icon size */
|
|
882
|
+
--fileUpload-transition-duration: 200ms; /* Transition duration */
|
|
883
|
+
--galleria-container-background: #11162d; /* Galleria container background */
|
|
884
|
+
--galleria-container-radius: 5px; /* Galleria container border radius */
|
|
885
|
+
--galleria-container-border-color: #1a2244; /* Container border color */
|
|
886
|
+
--galleria-container-border-width: 1px; /* Container border width */
|
|
887
|
+
--galleria-preview-background: #0a0e1f; /* Preview area background */
|
|
888
|
+
--galleria-preview-padding: 10px; /* Preview area padding */
|
|
889
|
+
--galleria-preview-radius: 5px; /* Preview image border radius */
|
|
890
|
+
--galleria-thumbnail-container-gap: 6px; /* Gap between thumbnails */
|
|
891
|
+
--galleria-thumbnail-container-padding: 10px; /* Thumbnail container padding */
|
|
892
|
+
--galleria-thumbnail-item-width: 80px; /* Thumbnail width */
|
|
893
|
+
--galleria-thumbnail-item-height: 60px; /* Thumbnail height */
|
|
894
|
+
--galleria-thumbnail-item-radius: 2px; /* Thumbnail border radius */
|
|
895
|
+
--galleria-thumbnail-item-opacity-default: 0.6; /* Thumbnail opacity */
|
|
896
|
+
--galleria-thumbnail-item-opacity-hover: 0.8; /* Thumbnail hover opacity */
|
|
897
|
+
--galleria-thumbnail-item-opacity-active: 1; /* Active thumbnail opacity */
|
|
898
|
+
--galleria-thumbnail-item-border-color-default: transparent; /* Thumbnail border color */
|
|
899
|
+
--galleria-thumbnail-item-border-color-active: #11162d; /* Active thumbnail border color */
|
|
900
|
+
--galleria-thumbnail-item-border-width: 2px; /* Thumbnail border width */
|
|
901
|
+
--galleria-navigator-size: 40px; /* Navigator button size */
|
|
902
|
+
--galleria-navigator-iconSize: 20px; /* Navigator icon size */
|
|
903
|
+
--galleria-navigator-background-default: rgba(0, 0, 0, 0.3); /* Navigator background */
|
|
904
|
+
--galleria-navigator-background-hover: rgba(0, 0, 0, 0.5); /* Navigator hover background */
|
|
905
|
+
--galleria-navigator-color: #0a0e1f; /* Navigator icon color */
|
|
906
|
+
--galleria-navigator-radius: 50%; /* Navigator border radius */
|
|
907
|
+
--galleria-indicator-size: 10px; /* Indicator dot size */
|
|
908
|
+
--galleria-indicator-gap: 6px; /* Gap between indicators */
|
|
909
|
+
--galleria-indicator-background-default: rgba(255, 255, 255, 0.5); /* Indicator background */
|
|
910
|
+
--galleria-indicator-background-active: #0a0e1f; /* Active indicator background */
|
|
911
|
+
--galleria-fullscreen-background: rgba(0, 0, 0, 0.6); /* Fullscreen overlay background */
|
|
912
|
+
--galleria-fullscreen-zIndex: 1100; /* Fullscreen z-index */
|
|
913
|
+
--galleria-fullscreen-closeButton-size: 40px; /* Close button size */
|
|
914
|
+
--galleria-fullscreen-closeButton-color: #0a0e1f; /* Close button color */
|
|
915
|
+
--galleria-fullscreen-closeButton-background-default: rgba(0, 0, 0, 0.3); /* Close button background */
|
|
916
|
+
--galleria-fullscreen-closeButton-background-hover: rgba(0, 0, 0, 0.5); /* Close button hover background */
|
|
917
|
+
--galleria-caption-background: rgba(0, 0, 0, 0.5); /* Caption background */
|
|
918
|
+
--galleria-caption-color: #0a0e1f; /* Caption text color */
|
|
919
|
+
--galleria-caption-padding: 10px; /* Caption padding */
|
|
920
|
+
--galleria-caption-fontSize: 14px; /* Caption font size */
|
|
921
|
+
--galleria-transition-duration: 300ms; /* Transition duration */
|
|
922
|
+
--image-compare-background: #11162d; /* Container background color */
|
|
923
|
+
--image-compare-border-color: #1a2244; /* Border color */
|
|
924
|
+
--image-compare-border-width: 1px; /* Border width */
|
|
925
|
+
--image-compare-border-radius: 5px; /* Border radius */
|
|
926
|
+
--image-compare-handle-width: 4px; /* Handle divider width */
|
|
927
|
+
--image-compare-handle-color-default: #ffffff; /* Handle color */
|
|
928
|
+
--image-compare-handle-color-hover: #11162d; /* Handle hover color */
|
|
929
|
+
--image-compare-handle-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Handle shadow */
|
|
930
|
+
--image-compare-icon-size: 32px; /* Handle icon container size */
|
|
931
|
+
--image-compare-icon-color: #404040; /* Handle icon color */
|
|
932
|
+
--image-compare-icon-background: #ffffff; /* Handle icon background */
|
|
933
|
+
--image-compare-transition-duration: 150ms; /* Handle state transition duration */
|
|
934
|
+
--image-radius: 5px; /* Image border radius */
|
|
935
|
+
--image-placeholder-background: #060813; /* Placeholder background color while loading */
|
|
936
|
+
--image-preview-icon-size: 24px; /* Preview indicator icon size */
|
|
937
|
+
--image-preview-icon-color: #0a0e1f; /* Preview indicator icon color */
|
|
938
|
+
--image-preview-icon-background: rgba(0, 0, 0, 0.5); /* Preview indicator background */
|
|
939
|
+
--image-preview-overlay-background: rgba(0, 0, 0, 0.6); /* Preview overlay background */
|
|
940
|
+
--image-preview-overlay-zIndex: 1100; /* Preview overlay z-index */
|
|
941
|
+
--image-preview-closeButton-size: 40px; /* Close button size in preview */
|
|
942
|
+
--image-preview-closeButton-color: #0a0e1f; /* Close button color */
|
|
943
|
+
--image-preview-closeButton-hoverBackground: rgba(255, 255, 255, 0.1); /* Close button hover background */
|
|
944
|
+
--image-transition-duration: 200ms; /* Transition duration for hover effects */
|
|
945
|
+
--in-place-display-paddingX: 16px; /* Display element horizontal padding */
|
|
946
|
+
--in-place-display-paddingY: 10px; /* Display element vertical padding */
|
|
947
|
+
--in-place-display-background-default: transparent; /* Display background */
|
|
948
|
+
--in-place-display-background-hover: #060813; /* Display hover background */
|
|
949
|
+
--in-place-display-color-default: #ffffff; /* Display text color */
|
|
950
|
+
--in-place-display-color-hover: #ffffff; /* Display hover text color */
|
|
951
|
+
--in-place-display-color-disabled: #7680a9; /* Display disabled text color */
|
|
952
|
+
--in-place-display-border-radius: 5px; /* Display border radius */
|
|
953
|
+
--in-place-closeButton-size: 28px; /* Close button size */
|
|
954
|
+
--in-place-closeButton-iconSize: 14px; /* Close icon size */
|
|
955
|
+
--in-place-closeButton-color-default: #7680a9; /* Close button color */
|
|
956
|
+
--in-place-closeButton-color-hover: #ffffff; /* Close button hover color */
|
|
957
|
+
--in-place-closeButton-background-hover: #060813; /* Close button hover background */
|
|
958
|
+
--in-place-closeButton-radius: 5px; /* Close button border radius */
|
|
959
|
+
--in-place-closeButton-gap: 10px; /* Gap between content and close button */
|
|
960
|
+
--in-place-transition-duration: 150ms; /* State transition duration */
|
|
961
|
+
--inline-message-padding-x: 10px; /* Horizontal padding */
|
|
962
|
+
--inline-message-padding-y: 6px; /* Vertical padding */
|
|
963
|
+
--inline-message-gap: 6px; /* Gap between icon and text */
|
|
964
|
+
--inline-message-radius: 5px; /* Border radius */
|
|
965
|
+
--inline-message-fontSize: 14px; /* Text font size */
|
|
966
|
+
--inline-message-fontWeight: 500; /* Text font weight */
|
|
967
|
+
--inline-message-iconSize: 16px; /* Icon size */
|
|
968
|
+
--inline-message-background-success: rgba(34, 197, 94, 0.15); /* Success background */
|
|
969
|
+
--inline-message-background-info: rgba(59, 130, 246, 0.15); /* Info background */
|
|
970
|
+
--inline-message-background-warn: rgba(245, 158, 11, 0.15); /* Warning background */
|
|
971
|
+
--inline-message-background-error: rgba(239, 68, 68, 0.15); /* Error background */
|
|
972
|
+
--inline-message-text-success: #4ade80; /* Success text color */
|
|
973
|
+
--inline-message-text-info: #60a5fa; /* Info text color */
|
|
974
|
+
--inline-message-text-warn: #fbbf24; /* Warning text color */
|
|
975
|
+
--inline-message-text-error: #f87171; /* Error text color */
|
|
976
|
+
--inline-message-icon-success: #22c55e; /* Success icon color */
|
|
977
|
+
--inline-message-icon-info: #3b82f6; /* Info icon color */
|
|
978
|
+
--inline-message-icon-warn: #f59e0b; /* Warning icon color */
|
|
979
|
+
--inline-message-icon-error: #ef4444; /* Error icon color */
|
|
980
|
+
--input-chips-height-sm: 32px; /* Small container min-height */
|
|
981
|
+
--input-chips-height-md: 40px; /* Medium container min-height (default) */
|
|
982
|
+
--input-chips-height-lg: 48px; /* Large container min-height */
|
|
983
|
+
--input-chips-padding-x: 10px; /* Horizontal padding */
|
|
984
|
+
--input-chips-padding-y: 6px; /* Vertical padding */
|
|
985
|
+
--input-chips-gap: 6px; /* Gap between chips and input */
|
|
986
|
+
--input-chips-radius: 5px; /* Container border radius */
|
|
987
|
+
--input-chips-border-width: 1px;
|
|
988
|
+
--input-chips-border-color-default: #d4d4d4; /* Default border color */
|
|
989
|
+
--input-chips-border-color-hover: #a3a3a3; /* Hover border color */
|
|
990
|
+
--input-chips-border-color-focus: #11162d; /* Focus border color */
|
|
991
|
+
--input-chips-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
992
|
+
--input-chips-border-color-error: #ef4444; /* Error/invalid border color */
|
|
993
|
+
--input-chips-background-default: #0a0e1f; /* Default background */
|
|
994
|
+
--input-chips-background-disabled: #f5f5f5; /* Disabled background */
|
|
995
|
+
--input-chips-text-default: #ffffff; /* Default text color */
|
|
996
|
+
--input-chips-text-placeholder: #7680a9; /* Placeholder text color */
|
|
997
|
+
--input-chips-text-disabled: #7680a9; /* Disabled text color */
|
|
998
|
+
--input-chips-fontSize-sm: 14px;
|
|
999
|
+
--input-chips-fontSize-md: 15px;
|
|
1000
|
+
--input-chips-fontSize-lg: 16px;
|
|
1001
|
+
--input-chips-chip-padding-x: 10px;
|
|
1002
|
+
--input-chips-chip-padding-y: 4px;
|
|
1003
|
+
--input-chips-chip-gap: 4px;
|
|
1004
|
+
--input-chips-chip-radius: 9999px;
|
|
1005
|
+
--input-chips-chip-background-default: #060813;
|
|
1006
|
+
--input-chips-chip-background-hover: #e5e5e5;
|
|
1007
|
+
--input-chips-chip-text: #ffffff;
|
|
1008
|
+
--input-chips-chip-fontSize: 13px;
|
|
1009
|
+
--input-chips-remove-size: 14px;
|
|
1010
|
+
--input-chips-remove-color-default: #7680a9;
|
|
1011
|
+
--input-chips-remove-color-hover: #ffffff;
|
|
1012
|
+
--input-chips-focus-ringWidth: 2px;
|
|
1013
|
+
--input-chips-focus-ringColor: #11162d;
|
|
1014
|
+
--input-chips-focus-ringOffset: 1px;
|
|
1015
|
+
--input-group-addon-background-default: #11162d; /* Addon background color */
|
|
1016
|
+
--input-group-addon-text-default: #7680a9; /* Addon text color */
|
|
1017
|
+
--input-group-addon-border-color: #242e5c; /* Addon border color */
|
|
1018
|
+
--input-group-addon-border-width: 1px; /* Addon border width */
|
|
1019
|
+
--input-group-addon-padding-x: 16px; /* Horizontal padding */
|
|
1020
|
+
--input-group-addon-padding-y: 10px; /* Vertical padding */
|
|
1021
|
+
--input-group-addon-fontSize: 14px; /* Addon font size */
|
|
1022
|
+
--input-group-display: flex; /* Display type for input group container */
|
|
1023
|
+
--input-group-border-radius: 5px; /* Border radius for grouped elements */
|
|
1024
|
+
--input-group-gap: 0; /* Gap between input group items (none for seamless grouping) */
|
|
1025
|
+
--input-icon-color-default: #7680a9; /* Default icon color */
|
|
1026
|
+
--input-icon-color-focus: #ffffff; /* Icon color when input is focused */
|
|
1027
|
+
--input-icon-size-sm: 16px; /* Small icon size */
|
|
1028
|
+
--input-icon-size-md: 18px; /* Medium icon size */
|
|
1029
|
+
--input-icon-size-lg: 20px; /* Large icon size */
|
|
1030
|
+
--input-icon-offset: 16px; /* Horizontal offset from input edge */
|
|
1031
|
+
--input-mask-height-sm: 32px; /* Small input height */
|
|
1032
|
+
--input-mask-height-md: 40px; /* Medium input height (default) */
|
|
1033
|
+
--input-mask-height-lg: 48px; /* Large input height */
|
|
1034
|
+
--input-mask-padding-x: 16px; /* Horizontal padding */
|
|
1035
|
+
--input-mask-padding-y: 10px; /* Vertical padding */
|
|
1036
|
+
--input-mask-fontSize-sm: 14px;
|
|
1037
|
+
--input-mask-fontSize-md: 15px;
|
|
1038
|
+
--input-mask-fontSize-lg: 16px;
|
|
1039
|
+
--input-mask-radius: 5px; /* Input border radius */
|
|
1040
|
+
--input-mask-border-width: 1px;
|
|
1041
|
+
--input-mask-border-color-default: #d4d4d4; /* Default border color */
|
|
1042
|
+
--input-mask-border-color-hover: #a3a3a3; /* Hover border color */
|
|
1043
|
+
--input-mask-border-color-focus: #11162d; /* Focus border color */
|
|
1044
|
+
--input-mask-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
1045
|
+
--input-mask-border-color-error: #ef4444; /* Error/invalid border color */
|
|
1046
|
+
--input-mask-background-default: #0a0e1f; /* Default background */
|
|
1047
|
+
--input-mask-background-disabled: #f5f5f5; /* Disabled background */
|
|
1048
|
+
--input-mask-background-hover: #0a0e1f; /* Hover background */
|
|
1049
|
+
--input-mask-text-default: #ffffff; /* Default text color */
|
|
1050
|
+
--input-mask-text-placeholder: #7680a9; /* Placeholder/slot character color */
|
|
1051
|
+
--input-mask-text-disabled: #7680a9; /* Disabled text color */
|
|
1052
|
+
--input-mask-focus-ringWidth: 2px; /* Focus ring width */
|
|
1053
|
+
--input-mask-focus-ringColor: #11162d; /* Focus ring color */
|
|
1054
|
+
--input-mask-focus-ringOffset: 1px; /* Focus ring offset */
|
|
1055
|
+
--inputNumber-height-sm: 32px;
|
|
1056
|
+
--inputNumber-height-md: 40px;
|
|
1057
|
+
--inputNumber-height-lg: 48px;
|
|
1058
|
+
--inputNumber-padding-x: 16px;
|
|
1059
|
+
--inputNumber-fontSize-sm: 14px;
|
|
1060
|
+
--inputNumber-fontSize-md: 15px;
|
|
1061
|
+
--inputNumber-fontSize-lg: 16px;
|
|
1062
|
+
--inputNumber-radius: 5px;
|
|
1063
|
+
--inputNumber-border-width: 1px;
|
|
1064
|
+
--inputNumber-border-color-default: #d4d4d4;
|
|
1065
|
+
--inputNumber-border-color-hover: #a3a3a3;
|
|
1066
|
+
--inputNumber-border-color-focus: #11162d;
|
|
1067
|
+
--inputNumber-border-color-disabled: #e5e5e5;
|
|
1068
|
+
--inputNumber-border-color-error: #ef4444;
|
|
1069
|
+
--inputNumber-background-default: #0a0e1f;
|
|
1070
|
+
--inputNumber-background-disabled: #f5f5f5;
|
|
1071
|
+
--inputNumber-text-default: #ffffff;
|
|
1072
|
+
--inputNumber-text-placeholder: #7680a9;
|
|
1073
|
+
--inputNumber-text-disabled: #7680a9;
|
|
1074
|
+
--inputNumber-button-width: 32px;
|
|
1075
|
+
--inputNumber-button-background-default: #f5f5f5;
|
|
1076
|
+
--inputNumber-button-background-hover: #e5e5e5;
|
|
1077
|
+
--inputNumber-button-background-active: #d4d4d4;
|
|
1078
|
+
--inputNumber-button-background-disabled: #fafafa;
|
|
1079
|
+
--inputNumber-button-icon-color-default: #525252;
|
|
1080
|
+
--inputNumber-button-icon-color-disabled: #d4d4d4;
|
|
1081
|
+
--inputNumber-focus-ringWidth: 2px;
|
|
1082
|
+
--inputNumber-focus-ringColor: #11162d;
|
|
1083
|
+
--inputNumber-focus-ringOffset: 1px;
|
|
1084
|
+
--input-otp-gap: 10px; /* Gap between input cells */
|
|
1085
|
+
--input-otp-cell-size: 48px; /* Cell width and height */
|
|
1086
|
+
--input-otp-cell-fontSize: 20px; /* Cell character font size */
|
|
1087
|
+
--input-otp-cell-fontWeight: 600; /* Cell character font weight */
|
|
1088
|
+
--input-otp-cell-radius: 5px; /* Cell border radius */
|
|
1089
|
+
--input-otp-cell-background-default: #0a0e1f; /* Default cell background */
|
|
1090
|
+
--input-otp-cell-background-focus: #0a0e1f; /* Focused cell background */
|
|
1091
|
+
--input-otp-cell-background-filled: #fafafa; /* Filled cell background */
|
|
1092
|
+
--input-otp-cell-background-disabled: #f5f5f5; /* Disabled cell background */
|
|
1093
|
+
--input-otp-cell-border-width: 1px; /* Cell border width */
|
|
1094
|
+
--input-otp-cell-border-color-default: #d4d4d4; /* Default cell border color */
|
|
1095
|
+
--input-otp-cell-border-color-hover: #a3a3a3; /* Hover cell border color */
|
|
1096
|
+
--input-otp-cell-border-color-focus: #11162d; /* Focused cell border color */
|
|
1097
|
+
--input-otp-cell-border-color-filled: #a3a3a3; /* Filled cell border color */
|
|
1098
|
+
--input-otp-cell-border-color-disabled: #e5e5e5; /* Disabled cell border color */
|
|
1099
|
+
--input-otp-cell-border-color-error: #ef4444; /* Error cell border color */
|
|
1100
|
+
--input-otp-cell-text-default: #ffffff; /* Default text color */
|
|
1101
|
+
--input-otp-cell-text-disabled: #7680a9; /* Disabled text color */
|
|
1102
|
+
--input-otp-cell-text-mask: #ffffff; /* Masked character color */
|
|
1103
|
+
--input-otp-focus-ringWidth: 2px; /* Focus ring width */
|
|
1104
|
+
--input-otp-focus-ringColor: #f97316; /* Focus ring color */
|
|
1105
|
+
--input-otp-focus-ringOffset: 1px; /* Focus ring offset */
|
|
1106
|
+
--input-otp-separator-width: 8px; /* Separator dash width */
|
|
1107
|
+
--input-otp-separator-color: #a3a3a3; /* Separator color */
|
|
1108
|
+
--inputSwitch-width-sm: 36px;
|
|
1109
|
+
--inputSwitch-width-md: 44px;
|
|
1110
|
+
--inputSwitch-width-lg: 52px;
|
|
1111
|
+
--inputSwitch-height-sm: 20px;
|
|
1112
|
+
--inputSwitch-height-md: 24px;
|
|
1113
|
+
--inputSwitch-height-lg: 28px;
|
|
1114
|
+
--inputSwitch-thumb-size-sm: 16px;
|
|
1115
|
+
--inputSwitch-thumb-size-md: 20px;
|
|
1116
|
+
--inputSwitch-thumb-size-lg: 24px;
|
|
1117
|
+
--inputSwitch-thumb-offset: 2px;
|
|
1118
|
+
--inputSwitch-thumb-color-default: #ffffff;
|
|
1119
|
+
--inputSwitch-thumb-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
1120
|
+
--inputSwitch-track-background-off: #d4d4d4;
|
|
1121
|
+
--inputSwitch-track-background-on: #11162d;
|
|
1122
|
+
--inputSwitch-track-background-disabled: #e5e5e5;
|
|
1123
|
+
--inputSwitch-label-gap: 10px;
|
|
1124
|
+
--inputSwitch-label-color-default: #ffffff;
|
|
1125
|
+
--inputSwitch-label-color-disabled: #7680a9;
|
|
1126
|
+
--inputSwitch-focus-ringWidth: 2px;
|
|
1127
|
+
--inputSwitch-focus-ringColor: #11162d;
|
|
1128
|
+
--inputSwitch-focus-ringOffset: 2px;
|
|
1129
|
+
--input-text-height-sm: 32px; /* Small input height */
|
|
1130
|
+
--input-text-height-md: 40px; /* Medium input height (default) */
|
|
1131
|
+
--input-text-height-lg: 48px; /* Large input height */
|
|
1132
|
+
--input-text-padding-x: 16px; /* Horizontal padding */
|
|
1133
|
+
--input-text-padding-y: 10px; /* Vertical padding */
|
|
1134
|
+
--input-text-fontSize-sm: 14px;
|
|
1135
|
+
--input-text-fontSize-md: 15px;
|
|
1136
|
+
--input-text-fontSize-lg: 16px;
|
|
1137
|
+
--input-text-radius: 5px; /* Input border radius */
|
|
1138
|
+
--input-text-border-width: 1px;
|
|
1139
|
+
--input-text-border-color-default: #d4d4d4; /* Default border color */
|
|
1140
|
+
--input-text-border-color-hover: #a3a3a3; /* Hover border color */
|
|
1141
|
+
--input-text-border-color-focus: #11162d; /* Focus border color */
|
|
1142
|
+
--input-text-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
1143
|
+
--input-text-border-color-error: #ef4444; /* Error/invalid border color */
|
|
1144
|
+
--input-text-background-default: #0a0e1f; /* Default background */
|
|
1145
|
+
--input-text-background-disabled: #f5f5f5; /* Disabled background */
|
|
1146
|
+
--input-text-background-hover: #0a0e1f; /* Hover background */
|
|
1147
|
+
--input-text-text-default: #ffffff; /* Default text color */
|
|
1148
|
+
--input-text-text-placeholder: #7680a9; /* Placeholder text color */
|
|
1149
|
+
--input-text-text-disabled: #7680a9; /* Disabled text color */
|
|
1150
|
+
--input-text-focus-ringWidth: 2px; /* Focus ring width */
|
|
1151
|
+
--input-text-focus-ringColor: #11162d; /* Focus ring color */
|
|
1152
|
+
--input-text-focus-ringOffset: 1px; /* Focus ring offset */
|
|
1153
|
+
--knob-size-sm: 80px; /* Small knob size */
|
|
1154
|
+
--knob-size-md: 120px; /* Medium knob size */
|
|
1155
|
+
--knob-size-lg: 160px; /* Large knob size */
|
|
1156
|
+
--knob-strokeWidth-sm: 6px; /* Small stroke width */
|
|
1157
|
+
--knob-strokeWidth-md: 8px; /* Medium stroke width */
|
|
1158
|
+
--knob-strokeWidth-lg: 10px; /* Large stroke width */
|
|
1159
|
+
--knob-track-color: #e5e5e5; /* Background track color */
|
|
1160
|
+
--knob-fill-color-default: #11162d; /* Default fill color */
|
|
1161
|
+
--knob-fill-color-disabled: #d4d4d4; /* Disabled fill color */
|
|
1162
|
+
--knob-valueText-fontSize-sm: 16px; /* Small value font size */
|
|
1163
|
+
--knob-valueText-fontSize-md: 20px; /* Medium value font size */
|
|
1164
|
+
--knob-valueText-fontSize-lg: 28px; /* Large value font size */
|
|
1165
|
+
--knob-valueText-fontWeight: 600; /* Value font weight */
|
|
1166
|
+
--knob-valueText-color-default: #ffffff; /* Default value color */
|
|
1167
|
+
--knob-valueText-color-disabled: #7680a9; /* Disabled value color */
|
|
1168
|
+
--knob-focus-ringWidth: 2px; /* Focus ring width */
|
|
1169
|
+
--knob-focus-ringColor: #f97316; /* Focus ring color */
|
|
1170
|
+
--knob-focus-ringOffset: 2px; /* Focus ring offset */
|
|
1171
|
+
--knob-transition-duration: 100ms; /* Value change transition */
|
|
1172
|
+
--listbox-padding: 6px; /* Container padding */
|
|
1173
|
+
--listbox-radius: 5px; /* Container border radius */
|
|
1174
|
+
--listbox-border-width: 1px;
|
|
1175
|
+
--listbox-border-color-default: #d4d4d4; /* Default border color */
|
|
1176
|
+
--listbox-border-color-focus: #11162d; /* Focus border color */
|
|
1177
|
+
--listbox-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
1178
|
+
--listbox-background-default: #0a0e1f; /* Default background */
|
|
1179
|
+
--listbox-background-disabled: #f5f5f5; /* Disabled background */
|
|
1180
|
+
--listbox-maxHeight: 280px; /* Max height before scrolling */
|
|
1181
|
+
--listbox-filter-height: 36px;
|
|
1182
|
+
--listbox-filter-padding-x: 10px;
|
|
1183
|
+
--listbox-filter-background: #0a0e1f;
|
|
1184
|
+
--listbox-filter-border: #e5e5e5;
|
|
1185
|
+
--listbox-filter-radius: 5px;
|
|
1186
|
+
--listbox-filter-text: #ffffff;
|
|
1187
|
+
--listbox-filter-placeholder: #7680a9;
|
|
1188
|
+
--listbox-filter-marginBottom: 6px;
|
|
1189
|
+
--listbox-option-padding-x: 16px;
|
|
1190
|
+
--listbox-option-padding-y: 10px;
|
|
1191
|
+
--listbox-option-radius: 2px;
|
|
1192
|
+
--listbox-option-background-default: transparent;
|
|
1193
|
+
--listbox-option-background-hover: #f5f5f5;
|
|
1194
|
+
--listbox-option-background-selected: #11162d;
|
|
1195
|
+
--listbox-option-background-focus: #f5f5f5;
|
|
1196
|
+
--listbox-option-text-default: #ffffff;
|
|
1197
|
+
--listbox-option-text-selected: #ffffff;
|
|
1198
|
+
--listbox-option-text-disabled: #7680a9;
|
|
1199
|
+
--listbox-option-fontSize: 15px;
|
|
1200
|
+
--listbox-focus-ringWidth: 2px;
|
|
1201
|
+
--listbox-focus-ringColor: #11162d;
|
|
1202
|
+
--listbox-focus-ringOffset: 1px;
|
|
1203
|
+
--listbox-checkbox-size: 16px;
|
|
1204
|
+
--listbox-checkbox-marginRight: 10px;
|
|
1205
|
+
--mega-menu-root-background: #0a0e1f; /* Menu bar background */
|
|
1206
|
+
--mega-menu-root-padding-x: 16px; /* Menu bar horizontal padding */
|
|
1207
|
+
--mega-menu-root-padding-y: 6px; /* Menu bar vertical padding */
|
|
1208
|
+
--mega-menu-root-gap: 4px; /* Gap between root items */
|
|
1209
|
+
--mega-menu-rootItem-padding-x: 16px; /* Root item horizontal padding */
|
|
1210
|
+
--mega-menu-rootItem-padding-y: 10px; /* Root item vertical padding */
|
|
1211
|
+
--mega-menu-rootItem-text-color-default: #ffffff; /* Root item text color */
|
|
1212
|
+
--mega-menu-rootItem-text-color-hover: #11162d; /* Root item hover text color */
|
|
1213
|
+
--mega-menu-rootItem-text-color-active: #11162d; /* Active root item text color */
|
|
1214
|
+
--mega-menu-rootItem-text-fontSize: 14px; /* Root item font size */
|
|
1215
|
+
--mega-menu-rootItem-text-fontWeight-default: 500; /* Root item font weight */
|
|
1216
|
+
--mega-menu-rootItem-text-fontWeight-active: 600; /* Active root item font weight */
|
|
1217
|
+
--mega-menu-rootItem-background-default: transparent; /* Root item background */
|
|
1218
|
+
--mega-menu-rootItem-background-hover: #060813; /* Root item hover background */
|
|
1219
|
+
--mega-menu-rootItem-background-active: #060813; /* Active root item background */
|
|
1220
|
+
--mega-menu-rootItem-radius: 2px; /* Root item border radius */
|
|
1221
|
+
--mega-menu-rootItem-indicator-height: 2px; /* Active indicator height */
|
|
1222
|
+
--mega-menu-rootItem-indicator-color: #11162d; /* Active indicator color */
|
|
1223
|
+
--mega-menu-panel-background: #1a2244; /* Dropdown panel background */
|
|
1224
|
+
--mega-menu-panel-border-color: #1a2244; /* Panel border color */
|
|
1225
|
+
--mega-menu-panel-border-width: 1px; /* Panel border width */
|
|
1226
|
+
--mega-menu-panel-radius: 5px; /* Panel border radius */
|
|
1227
|
+
--mega-menu-panel-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Panel shadow */
|
|
1228
|
+
--mega-menu-panel-padding: 26px; /* Panel padding */
|
|
1229
|
+
--mega-menu-panel-gap: 26px; /* Gap between columns */
|
|
1230
|
+
--mega-menu-panel-maxWidth: 960px; /* Maximum panel width */
|
|
1231
|
+
--mega-menu-panel-zIndex: 1050; /* Panel z-index */
|
|
1232
|
+
--mega-menu-column-minWidth: 200px; /* Minimum column width */
|
|
1233
|
+
--mega-menu-column-gap: 6px; /* Gap between column items */
|
|
1234
|
+
--mega-menu-category-text-color: #ffffff; /* Category heading color */
|
|
1235
|
+
--mega-menu-category-text-fontSize: 12px; /* Category heading font size */
|
|
1236
|
+
--mega-menu-category-text-fontWeight: 600; /* Category heading font weight */
|
|
1237
|
+
--mega-menu-category-text-textTransform: uppercase; /* Category text transform */
|
|
1238
|
+
--mega-menu-category-text-letterSpacing: 0.5px; /* Category letter spacing */
|
|
1239
|
+
--mega-menu-category-margin-bottom: 10px; /* Space below category heading */
|
|
1240
|
+
--mega-menu-item-padding-x: 10px; /* Item horizontal padding */
|
|
1241
|
+
--mega-menu-item-padding-y: 6px; /* Item vertical padding */
|
|
1242
|
+
--mega-menu-item-text-color-default: #ffffff; /* Item text color */
|
|
1243
|
+
--mega-menu-item-text-color-hover: #11162d; /* Item hover text color */
|
|
1244
|
+
--mega-menu-item-text-fontSize: 14px; /* Item font size */
|
|
1245
|
+
--mega-menu-item-background-hover: #060813; /* Item hover background */
|
|
1246
|
+
--mega-menu-item-radius: 2px; /* Item border radius */
|
|
1247
|
+
--mega-menu-item-icon-size: 16px; /* Item icon size */
|
|
1248
|
+
--mega-menu-item-icon-color: #7680a9; /* Item icon color */
|
|
1249
|
+
--mega-menu-item-icon-gap: 10px; /* Gap between icon and text */
|
|
1250
|
+
--mega-menu-item-description-color: #7680a9; /* Item description color */
|
|
1251
|
+
--mega-menu-item-description-fontSize: 12px; /* Item description font size */
|
|
1252
|
+
--menu-background: #1a2244; /* Menu popup background */
|
|
1253
|
+
--menu-border-width: 1px; /* Menu border width */
|
|
1254
|
+
--menu-border-color: #e5e5e5; /* Menu border color */
|
|
1255
|
+
--menu-radius: 5px; /* Menu border radius */
|
|
1256
|
+
--menu-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Menu popup shadow */
|
|
1257
|
+
--menu-padding: 6px; /* Menu content padding */
|
|
1258
|
+
--menu-minWidth: 180px; /* Minimum menu width */
|
|
1259
|
+
--menu-maxHeight: 320px; /* Maximum menu height before scrolling */
|
|
1260
|
+
--menu-zIndex: 1000; /* Z-index for stacking */
|
|
1261
|
+
--menu-item-padding-x: 16px; /* Item horizontal padding */
|
|
1262
|
+
--menu-item-padding-y: 10px; /* Item vertical padding */
|
|
1263
|
+
--menu-item-gap: 10px; /* Gap between icon and label */
|
|
1264
|
+
--menu-item-radius: 2px; /* Item border radius */
|
|
1265
|
+
--menu-item-background-default: transparent; /* Default item background */
|
|
1266
|
+
--menu-item-background-hover: #f5f5f5; /* Item hover background */
|
|
1267
|
+
--menu-item-background-active: #e5e5e5; /* Item active/pressed background */
|
|
1268
|
+
--menu-item-background-disabled: transparent; /* Disabled item background */
|
|
1269
|
+
--menu-item-text-default: #ffffff; /* Default item text color */
|
|
1270
|
+
--menu-item-text-disabled: #7680a9; /* Disabled item text color */
|
|
1271
|
+
--menu-item-icon-size: 18px; /* Item icon size */
|
|
1272
|
+
--menu-item-icon-color-default: #7680a9; /* Default icon color */
|
|
1273
|
+
--menu-item-icon-color-disabled: #d4d4d4; /* Disabled icon color */
|
|
1274
|
+
--menu-item-fontSize: 14px; /* Item font size */
|
|
1275
|
+
--menu-separator-color: #e5e5e5; /* Separator line color */
|
|
1276
|
+
--menu-separator-margin: 6px; /* Separator vertical margin */
|
|
1277
|
+
--menubar-background: #11162d; /* Menubar background color */
|
|
1278
|
+
--menubar-padding: 10px; /* Menubar container padding */
|
|
1279
|
+
--menubar-border-width: 1px; /* Border width */
|
|
1280
|
+
--menubar-border-color: #1a2244; /* Border color */
|
|
1281
|
+
--menubar-border-radius: 5px; /* Border radius */
|
|
1282
|
+
--menubar-item-padding: 6px 10px; /* Menu item padding */
|
|
1283
|
+
--menubar-item-gap: 4px; /* Gap between icon and label */
|
|
1284
|
+
--menubar-item-color-default: #ffffff; /* Item text color */
|
|
1285
|
+
--menubar-item-color-hover: #ffffff; /* Item text color on hover */
|
|
1286
|
+
--menubar-item-color-active: #11162d; /* Item text color when active */
|
|
1287
|
+
--menubar-item-color-disabled: #7680a9; /* Item text color when disabled */
|
|
1288
|
+
--menubar-item-background-default: transparent; /* Item background */
|
|
1289
|
+
--menubar-item-background-hover: #060813; /* Item background on hover */
|
|
1290
|
+
--menubar-item-background-active: #78350f; /* Item background when active */
|
|
1291
|
+
--menubar-item-borderRadius: 5px; /* Item border radius */
|
|
1292
|
+
--menubar-icon-size: 16px; /* Icon size */
|
|
1293
|
+
--menubar-icon-color-default: #7680a9; /* Icon color */
|
|
1294
|
+
--menubar-icon-color-hover: #ffffff; /* Icon color on hover */
|
|
1295
|
+
--menubar-submenu-background: #11162d; /* Submenu background */
|
|
1296
|
+
--menubar-submenu-minWidth: 200px; /* Submenu minimum width */
|
|
1297
|
+
--menubar-submenu-padding: 4px; /* Submenu container padding */
|
|
1298
|
+
--menubar-submenu-borderRadius: 5px; /* Submenu border radius */
|
|
1299
|
+
--menubar-submenu-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Submenu shadow */
|
|
1300
|
+
--menubar-separator-color: #1a2244; /* Separator color */
|
|
1301
|
+
--menubar-separator-margin: 4px; /* Separator vertical margin */
|
|
1302
|
+
--menubar-transition-duration: 150ms; /* Animation duration */
|
|
1303
|
+
--message-padding-x: 16px; /* Horizontal padding */
|
|
1304
|
+
--message-padding-y: 10px; /* Vertical padding */
|
|
1305
|
+
--message-gap: 10px; /* Gap between icon and text */
|
|
1306
|
+
--message-radius: 5px; /* Border radius */
|
|
1307
|
+
--message-fontSize: 14px; /* Message text font size */
|
|
1308
|
+
--message-fontWeight: 400; /* Message text font weight */
|
|
1309
|
+
--message-iconSize: 20px; /* Icon size */
|
|
1310
|
+
--message-closeButtonSize: 24px; /* Close button size */
|
|
1311
|
+
--message-borderWidth: 1px; /* Border width */
|
|
1312
|
+
--message-background-success: rgba(34, 197, 94, 0.15); /* Success message background */
|
|
1313
|
+
--message-background-info: rgba(59, 130, 246, 0.15); /* Info message background */
|
|
1314
|
+
--message-background-warn: rgba(245, 158, 11, 0.15); /* Warning message background */
|
|
1315
|
+
--message-background-error: rgba(239, 68, 68, 0.15); /* Error message background */
|
|
1316
|
+
--message-text-success: #4ade80; /* Success message text color */
|
|
1317
|
+
--message-text-info: #60a5fa; /* Info message text color */
|
|
1318
|
+
--message-text-warn: #fbbf24; /* Warning message text color */
|
|
1319
|
+
--message-text-error: #f87171; /* Error message text color */
|
|
1320
|
+
--message-icon-success: #22c55e; /* Success icon color */
|
|
1321
|
+
--message-icon-info: #3b82f6; /* Info icon color */
|
|
1322
|
+
--message-icon-warn: #f59e0b; /* Warning icon color */
|
|
1323
|
+
--message-icon-error: #ef4444; /* Error icon color */
|
|
1324
|
+
--message-border-success: #22c55e; /* Success message border color */
|
|
1325
|
+
--message-border-info: #3b82f6; /* Info message border color */
|
|
1326
|
+
--message-border-warn: #f59e0b; /* Warning message border color */
|
|
1327
|
+
--message-border-error: #ef4444; /* Error message border color */
|
|
1328
|
+
--message-closeButton-color: #7680a9; /* Close button icon color */
|
|
1329
|
+
--message-closeButton-hoverColor: #ffffff; /* Close button icon hover color */
|
|
1330
|
+
--meter-group-track-height: 8px; /* Height of the meter track */
|
|
1331
|
+
--meter-group-track-background: #e5e5e5; /* Background color of the meter track */
|
|
1332
|
+
--meter-group-track-radius: 9999px; /* Border radius of the meter track */
|
|
1333
|
+
--meter-group-meter-gap: 1px; /* Gap between meters in the group */
|
|
1334
|
+
--meter-group-meter-radius: 9999px; /* Border radius of individual meters */
|
|
1335
|
+
--meter-group-label-color: #ffffff; /* Label text color */
|
|
1336
|
+
--meter-group-label-fontSize: 14px; /* Label font size */
|
|
1337
|
+
--meter-group-label-fontWeight: 500; /* Label font weight */
|
|
1338
|
+
--meter-group-label-gap: 6px; /* Gap between label and meter */
|
|
1339
|
+
--meter-group-valueText-color: #7680a9; /* Value text color */
|
|
1340
|
+
--meter-group-valueText-fontSize: 12px; /* Value font size */
|
|
1341
|
+
--meter-group-legend-gap: 16px; /* Gap between legend items */
|
|
1342
|
+
--meter-group-legend-marker-size: 8px; /* Size of the legend color marker */
|
|
1343
|
+
--meter-group-legend-marker-radius: 9999px; /* Border radius of the legend marker */
|
|
1344
|
+
--meter-group-colors-primary: #11162d; /* Primary meter color */
|
|
1345
|
+
--meter-group-colors-success: #22c55e; /* Success meter color */
|
|
1346
|
+
--meter-group-colors-warning: #f59e0b; /* Warning meter color */
|
|
1347
|
+
--meter-group-colors-danger: #ef4444; /* Danger meter color */
|
|
1348
|
+
--multi-select-height-sm: 32px;
|
|
1349
|
+
--multi-select-height-md: 40px;
|
|
1350
|
+
--multi-select-height-lg: 48px;
|
|
1351
|
+
--multi-select-minHeight: 40px;
|
|
1352
|
+
--multi-select-padding-x: 16px;
|
|
1353
|
+
--multi-select-padding-y: 10px;
|
|
1354
|
+
--multi-select-fontSize-sm: 14px;
|
|
1355
|
+
--multi-select-fontSize-md: 15px;
|
|
1356
|
+
--multi-select-fontSize-lg: 16px;
|
|
1357
|
+
--multi-select-radius: 5px;
|
|
1358
|
+
--multi-select-border-width: 1px;
|
|
1359
|
+
--multi-select-border-color-default: #d4d4d4;
|
|
1360
|
+
--multi-select-border-color-hover: #a3a3a3;
|
|
1361
|
+
--multi-select-border-color-focus: #11162d;
|
|
1362
|
+
--multi-select-border-color-disabled: #e5e5e5;
|
|
1363
|
+
--multi-select-border-color-error: #ef4444;
|
|
1364
|
+
--multi-select-background-default: #0a0e1f;
|
|
1365
|
+
--multi-select-background-disabled: #f5f5f5;
|
|
1366
|
+
--multi-select-background-hover: #0a0e1f;
|
|
1367
|
+
--multi-select-text-default: #ffffff;
|
|
1368
|
+
--multi-select-text-placeholder: #7680a9;
|
|
1369
|
+
--multi-select-text-disabled: #7680a9;
|
|
1370
|
+
--multi-select-icon-size: 16px;
|
|
1371
|
+
--multi-select-icon-color-default: #737373;
|
|
1372
|
+
--multi-select-icon-color-disabled: #d4d4d4;
|
|
1373
|
+
--multi-select-chip-gap: 4px;
|
|
1374
|
+
--multi-select-chip-padding-x: 6px;
|
|
1375
|
+
--multi-select-chip-padding-y: 2px;
|
|
1376
|
+
--multi-select-chip-background: #060813;
|
|
1377
|
+
--multi-select-chip-radius: 2px;
|
|
1378
|
+
--multi-select-chip-fontSize: 13px;
|
|
1379
|
+
--multi-select-chip-remove-size: 14px;
|
|
1380
|
+
--multi-select-chip-remove-color-default: #7680a9;
|
|
1381
|
+
--multi-select-chip-remove-color-hover: #ffffff;
|
|
1382
|
+
--multi-select-dropdown-background: #0a0e1f;
|
|
1383
|
+
--multi-select-dropdown-border: #e5e5e5;
|
|
1384
|
+
--multi-select-dropdown-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
1385
|
+
--multi-select-dropdown-radius: 5px;
|
|
1386
|
+
--multi-select-dropdown-maxHeight: 280px;
|
|
1387
|
+
--multi-select-option-padding-x: 16px;
|
|
1388
|
+
--multi-select-option-padding-y: 10px;
|
|
1389
|
+
--multi-select-option-gap: 10px;
|
|
1390
|
+
--multi-select-option-background-default: transparent;
|
|
1391
|
+
--multi-select-option-background-hover: #f5f5f5;
|
|
1392
|
+
--multi-select-option-text-default: #ffffff;
|
|
1393
|
+
--multi-select-filter-padding: 10px;
|
|
1394
|
+
--multi-select-filter-borderColor: #e5e5e5;
|
|
1395
|
+
--multi-select-focus-ringWidth: 2px;
|
|
1396
|
+
--multi-select-focus-ringColor: #11162d;
|
|
1397
|
+
--multi-select-focus-ringOffset: 1px;
|
|
1398
|
+
--orderList-background: #11162d; /* OrderList container background */
|
|
1399
|
+
--orderList-border-color: #1a2244; /* Container border color */
|
|
1400
|
+
--orderList-border-width: 1px; /* Container border width */
|
|
1401
|
+
--orderList-radius: 5px; /* Container border radius */
|
|
1402
|
+
--orderList-header-background: #060813; /* Header background color */
|
|
1403
|
+
--orderList-header-padding: 16px; /* Header padding */
|
|
1404
|
+
--orderList-header-color: #ffffff; /* Header text color */
|
|
1405
|
+
--orderList-header-fontSize: 16px; /* Header font size */
|
|
1406
|
+
--orderList-header-fontWeight: 600; /* Header font weight */
|
|
1407
|
+
--orderList-header-borderColor: #1a2244; /* Header border color */
|
|
1408
|
+
--orderList-list-padding: 10px; /* List container padding */
|
|
1409
|
+
--orderList-list-gap: 4px; /* Gap between list items */
|
|
1410
|
+
--orderList-item-padding: 10px; /* Item padding */
|
|
1411
|
+
--orderList-item-background-default: transparent; /* Item default background */
|
|
1412
|
+
--orderList-item-background-hover: #060813; /* Item hover background */
|
|
1413
|
+
--orderList-item-background-selected: #78350f; /* Item selected background */
|
|
1414
|
+
--orderList-item-background-dragging: #1a2244; /* Item dragging background */
|
|
1415
|
+
--orderList-item-color: #ffffff; /* Item text color */
|
|
1416
|
+
--orderList-item-radius: 2px; /* Item border radius */
|
|
1417
|
+
--orderList-item-borderColor-default: transparent; /* Item default border */
|
|
1418
|
+
--orderList-item-borderColor-selected: #11162d; /* Item selected border */
|
|
1419
|
+
--orderList-controls-gap: 4px; /* Gap between control buttons */
|
|
1420
|
+
--orderList-controls-padding: 16px; /* Controls area padding */
|
|
1421
|
+
--orderList-button-size: 32px; /* Button size */
|
|
1422
|
+
--orderList-button-background-default: #060813; /* Button default background */
|
|
1423
|
+
--orderList-button-background-hover: #e5e5e5; /* Button hover background */
|
|
1424
|
+
--orderList-button-background-disabled: #f5f5f5; /* Button disabled background */
|
|
1425
|
+
--orderList-button-color-default: #ffffff; /* Button icon color */
|
|
1426
|
+
--orderList-button-color-disabled: #7680a9; /* Button disabled icon color */
|
|
1427
|
+
--orderList-button-radius: 2px; /* Button border radius */
|
|
1428
|
+
--orderList-dragHandle-color: #7680a9; /* Drag handle color */
|
|
1429
|
+
--orderList-dragHandle-size: 16px; /* Drag handle icon size */
|
|
1430
|
+
--orderList-transition-duration: 150ms; /* Animation duration */
|
|
1431
|
+
--organizationChart-background: transparent; /* Chart container background */
|
|
1432
|
+
--organizationChart-padding: 26px; /* Chart container padding */
|
|
1433
|
+
--organizationChart-node-background-default: #11162d; /* Node default background */
|
|
1434
|
+
--organizationChart-node-background-hover: #1a2244; /* Node hover background */
|
|
1435
|
+
--organizationChart-node-background-selected: #78350f; /* Node selected background */
|
|
1436
|
+
--organizationChart-node-border-width: 1px; /* Node border width */
|
|
1437
|
+
--organizationChart-node-border-color-default: #1a2244; /* Node default border color */
|
|
1438
|
+
--organizationChart-node-border-color-hover: #242e5c; /* Node hover border color */
|
|
1439
|
+
--organizationChart-node-border-color-selected: #11162d; /* Node selected border color */
|
|
1440
|
+
--organizationChart-node-radius: 5px; /* Node border radius */
|
|
1441
|
+
--organizationChart-node-padding: 16px; /* Node content padding */
|
|
1442
|
+
--organizationChart-node-shadow-default: 0 1px 2px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.08); /* Node default shadow */
|
|
1443
|
+
--organizationChart-node-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08); /* Node hover shadow */
|
|
1444
|
+
--organizationChart-node-minWidth: 160px; /* Node minimum width */
|
|
1445
|
+
--organizationChart-nodeContent-gap: 4px; /* Gap between node content elements */
|
|
1446
|
+
--organizationChart-nodeContent-title-color: #ffffff; /* Node title color */
|
|
1447
|
+
--organizationChart-nodeContent-title-fontSize: 14px; /* Node title font size */
|
|
1448
|
+
--organizationChart-nodeContent-title-fontWeight: 600; /* Node title font weight */
|
|
1449
|
+
--organizationChart-nodeContent-subtitle-color: #7680a9; /* Node subtitle color */
|
|
1450
|
+
--organizationChart-nodeContent-subtitle-fontSize: 12px; /* Node subtitle font size */
|
|
1451
|
+
--organizationChart-nodeContent-subtitle-fontWeight: 400; /* Node subtitle font weight */
|
|
1452
|
+
--organizationChart-connector-color: #242e5c; /* Connector line color */
|
|
1453
|
+
--organizationChart-connector-width: 1px; /* Connector line width */
|
|
1454
|
+
--organizationChart-connector-style: solid; /* Connector line style */
|
|
1455
|
+
--organizationChart-spacing-horizontal: 42px; /* Horizontal spacing between nodes */
|
|
1456
|
+
--organizationChart-spacing-vertical: 26px; /* Vertical spacing between levels */
|
|
1457
|
+
--organizationChart-toggleButton-size: 20px; /* Toggle button size */
|
|
1458
|
+
--organizationChart-toggleButton-background: #11162d; /* Toggle button background */
|
|
1459
|
+
--organizationChart-toggleButton-borderColor: #1a2244; /* Toggle button border color */
|
|
1460
|
+
--organizationChart-toggleButton-color: #7680a9; /* Toggle button icon color */
|
|
1461
|
+
--organizationChart-toggleButton-radius: 9999px; /* Toggle button border radius */
|
|
1462
|
+
--organizationChart-transition-duration: 200ms; /* Animation duration */
|
|
1463
|
+
--overlayPanel-padding-x: 26px; /* Horizontal padding */
|
|
1464
|
+
--overlayPanel-padding-y: 16px; /* Vertical padding */
|
|
1465
|
+
--overlayPanel-background: #0a0e1f; /* Panel background color */
|
|
1466
|
+
--overlayPanel-radius: 5px; /* Panel border radius */
|
|
1467
|
+
--overlayPanel-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Panel elevation shadow */
|
|
1468
|
+
--overlayPanel-border-color: #1a2244; /* Panel border color */
|
|
1469
|
+
--overlayPanel-border-width: 1px; /* Panel border width */
|
|
1470
|
+
--overlayPanel-closeButton-size: 28px; /* Close button size */
|
|
1471
|
+
--overlayPanel-closeButton-iconSize: 14px; /* Close icon size */
|
|
1472
|
+
--overlayPanel-closeButton-color-default: #7680a9; /* Close button icon color */
|
|
1473
|
+
--overlayPanel-closeButton-color-hover: #ffffff; /* Close button hover color */
|
|
1474
|
+
--overlayPanel-closeButton-background-hover: #060813; /* Close button hover background */
|
|
1475
|
+
--overlayPanel-closeButton-radius: 2px; /* Close button border radius */
|
|
1476
|
+
--overlayPanel-offset: 10px; /* Distance from trigger element */
|
|
1477
|
+
--overlayPanel-maxWidth: 400px; /* Maximum width */
|
|
1478
|
+
--overlayPanel-zIndex: 1100; /* Z-index for stacking */
|
|
1479
|
+
--paginator-background: #0a0e1f; /* Paginator container background */
|
|
1480
|
+
--paginator-padding: 10px; /* Paginator container padding */
|
|
1481
|
+
--paginator-gap: 6px; /* Gap between paginator elements */
|
|
1482
|
+
--paginator-border-width: 1px; /* Border width */
|
|
1483
|
+
--paginator-border-color: #e5e5e5; /* Border color */
|
|
1484
|
+
--paginator-border-radius: 5px; /* Border radius */
|
|
1485
|
+
--paginator-page-size: 36px; /* Page button size */
|
|
1486
|
+
--paginator-page-background-default: transparent; /* Page button default background */
|
|
1487
|
+
--paginator-page-background-hover: #f5f5f5; /* Page button hover background */
|
|
1488
|
+
--paginator-page-background-active: #11162d; /* Active page button background */
|
|
1489
|
+
--paginator-page-text-default: #ffffff; /* Page button default text color */
|
|
1490
|
+
--paginator-page-text-hover: #ffffff; /* Page button hover text color */
|
|
1491
|
+
--paginator-page-text-active: #0a0e1f; /* Active page button text color */
|
|
1492
|
+
--paginator-page-text-disabled: #a3a3a3; /* Disabled page button text color */
|
|
1493
|
+
--paginator-page-fontSize: 14px; /* Page button font size */
|
|
1494
|
+
--paginator-page-fontWeight: 500; /* Page button font weight */
|
|
1495
|
+
--paginator-page-radius: 5px; /* Page button border radius */
|
|
1496
|
+
--paginator-nav-size: 36px; /* Navigation button size */
|
|
1497
|
+
--paginator-nav-background-default: transparent; /* Nav button default background */
|
|
1498
|
+
--paginator-nav-background-hover: #f5f5f5; /* Nav button hover background */
|
|
1499
|
+
--paginator-nav-background-disabled: transparent; /* Nav button disabled background */
|
|
1500
|
+
--paginator-nav-icon-color-default: #7680a9; /* Nav icon default color */
|
|
1501
|
+
--paginator-nav-icon-color-hover: #ffffff; /* Nav icon hover color */
|
|
1502
|
+
--paginator-nav-icon-color-disabled: #a3a3a3; /* Nav icon disabled color */
|
|
1503
|
+
--paginator-nav-icon-size: 18px; /* Nav icon size */
|
|
1504
|
+
--paginator-nav-radius: 5px; /* Nav button border radius */
|
|
1505
|
+
--paginator-info-color: #7680a9; /* Info text color */
|
|
1506
|
+
--paginator-info-fontSize: 14px; /* Info text font size */
|
|
1507
|
+
--paginator-focus-ringColor: #f97316; /* Focus ring color */
|
|
1508
|
+
--paginator-focus-ringWidth: 2px; /* Focus ring width */
|
|
1509
|
+
--paginator-focus-ringOffset: 2px; /* Focus ring offset */
|
|
1510
|
+
--paginator-transition-duration: 150ms; /* Transition duration */
|
|
1511
|
+
--panel-background: #11162d; /* Panel background color */
|
|
1512
|
+
--panel-border-color: #1a2244; /* Panel border color */
|
|
1513
|
+
--panel-border-width: 1px; /* Panel border width */
|
|
1514
|
+
--panel-radius: 5px; /* Panel border radius */
|
|
1515
|
+
--panel-header-padding: 16px; /* Header section padding */
|
|
1516
|
+
--panel-header-background-default: #11162d; /* Header background */
|
|
1517
|
+
--panel-header-background-hover: #1a2244; /* Header hover background when toggleable */
|
|
1518
|
+
--panel-header-color: #ffffff; /* Header text color */
|
|
1519
|
+
--panel-header-borderColor: #1a2244; /* Header bottom border color */
|
|
1520
|
+
--panel-header-fontSize: 16px; /* Header font size */
|
|
1521
|
+
--panel-header-fontWeight: 600; /* Header font weight */
|
|
1522
|
+
--panel-content-padding: 26px; /* Content area padding */
|
|
1523
|
+
--panel-content-background: #0a0e1f; /* Content background */
|
|
1524
|
+
--panel-content-color: #ffffff; /* Content text color */
|
|
1525
|
+
--panel-icon-size: 16px; /* Toggle icon size */
|
|
1526
|
+
--panel-icon-color-default: #7680a9; /* Icon color */
|
|
1527
|
+
--panel-icon-color-hover: #ffffff; /* Icon color on hover */
|
|
1528
|
+
--panel-icon-rotation-collapsed: -90deg; /* Icon rotation when collapsed */
|
|
1529
|
+
--panel-icon-rotation-expanded: 0deg; /* Icon rotation when expanded */
|
|
1530
|
+
--panel-transition-duration: 200ms; /* Animation duration */
|
|
1531
|
+
--panelmenu-background: #11162d; /* PanelMenu background */
|
|
1532
|
+
--panelmenu-border-width: 1px; /* Border width */
|
|
1533
|
+
--panelmenu-border-color: #1a2244; /* Border color */
|
|
1534
|
+
--panelmenu-border-radius: 5px; /* Border radius */
|
|
1535
|
+
--panelmenu-gap: 0px; /* Gap between panels */
|
|
1536
|
+
--panelmenu-header-padding: 16px; /* Panel header padding */
|
|
1537
|
+
--panelmenu-header-background-default: #11162d; /* Header background */
|
|
1538
|
+
--panelmenu-header-background-hover: #060813; /* Header background on hover */
|
|
1539
|
+
--panelmenu-header-background-active: #060813; /* Header background when expanded */
|
|
1540
|
+
--panelmenu-header-color-default: #ffffff; /* Header text color */
|
|
1541
|
+
--panelmenu-header-color-hover: #ffffff; /* Header text color on hover */
|
|
1542
|
+
--panelmenu-header-color-disabled: #7680a9; /* Header text color when disabled */
|
|
1543
|
+
--panelmenu-content-padding: 0; /* Content area padding */
|
|
1544
|
+
--panelmenu-content-background: #0a0e1f; /* Content background */
|
|
1545
|
+
--panelmenu-item-padding: 6px 16px; /* Menu item padding */
|
|
1546
|
+
--panelmenu-item-gap: 4px; /* Gap between icon and label */
|
|
1547
|
+
--panelmenu-item-color-default: #ffffff; /* Item text color */
|
|
1548
|
+
--panelmenu-item-color-hover: #11162d; /* Item text color on hover */
|
|
1549
|
+
--panelmenu-item-color-active: #11162d; /* Active item text color */
|
|
1550
|
+
--panelmenu-item-color-disabled: #7680a9; /* Disabled item text color */
|
|
1551
|
+
--panelmenu-item-background-default: transparent; /* Item background */
|
|
1552
|
+
--panelmenu-item-background-hover: #060813; /* Item background on hover */
|
|
1553
|
+
--panelmenu-item-background-active: #78350f; /* Active item background */
|
|
1554
|
+
--panelmenu-item-indent: 16px; /* Indent for nested items */
|
|
1555
|
+
--panelmenu-icon-size: 16px; /* Icon size */
|
|
1556
|
+
--panelmenu-icon-color-default: #7680a9; /* Icon color */
|
|
1557
|
+
--panelmenu-icon-color-hover: #ffffff; /* Icon color on hover */
|
|
1558
|
+
--panelmenu-icon-rotation-collapsed: 0deg; /* Chevron rotation when collapsed */
|
|
1559
|
+
--panelmenu-icon-rotation-expanded: 90deg; /* Chevron rotation when expanded */
|
|
1560
|
+
--panelmenu-separator-color: #1a2244; /* Separator color */
|
|
1561
|
+
--panelmenu-separator-margin: 4px; /* Separator margin */
|
|
1562
|
+
--panelmenu-transition-duration: 200ms; /* Animation duration */
|
|
1563
|
+
--picklist-padding: 16px; /* Container padding */
|
|
1564
|
+
--picklist-gap: 16px; /* Gap between source, controls, and target */
|
|
1565
|
+
--picklist-radius: 5px; /* Container border radius */
|
|
1566
|
+
--picklist-border-width: 1px;
|
|
1567
|
+
--picklist-border-color-default: #d4d4d4; /* Default border color */
|
|
1568
|
+
--picklist-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
1569
|
+
--picklist-background-default: #0a0e1f; /* Default background */
|
|
1570
|
+
--picklist-background-disabled: #f5f5f5; /* Disabled background */
|
|
1571
|
+
--picklist-list-minHeight: 200px; /* Minimum height of list panels */
|
|
1572
|
+
--picklist-list-maxHeight: 320px; /* Maximum height before scrolling */
|
|
1573
|
+
--picklist-list-padding: 6px;
|
|
1574
|
+
--picklist-header-padding-x: 16px;
|
|
1575
|
+
--picklist-header-padding-y: 10px;
|
|
1576
|
+
--picklist-header-background: #fafafa;
|
|
1577
|
+
--picklist-header-text: #ffffff;
|
|
1578
|
+
--picklist-header-borderColor: #e5e5e5;
|
|
1579
|
+
--picklist-item-padding-x: 16px;
|
|
1580
|
+
--picklist-item-padding-y: 10px;
|
|
1581
|
+
--picklist-item-radius: 2px;
|
|
1582
|
+
--picklist-item-background-default: transparent;
|
|
1583
|
+
--picklist-item-background-hover: #f5f5f5;
|
|
1584
|
+
--picklist-item-background-selected: #11162d;
|
|
1585
|
+
--picklist-item-text-default: #ffffff;
|
|
1586
|
+
--picklist-item-text-selected: #ffffff;
|
|
1587
|
+
--picklist-controls-gap: 6px;
|
|
1588
|
+
--picklist-controls-button-size: 32px;
|
|
1589
|
+
--picklist-controls-button-background-default: #0a0e1f;
|
|
1590
|
+
--picklist-controls-button-background-hover: #f5f5f5;
|
|
1591
|
+
--picklist-controls-button-background-disabled: #fafafa;
|
|
1592
|
+
--picklist-controls-button-border: #d4d4d4;
|
|
1593
|
+
--picklist-controls-button-icon-default: #525252;
|
|
1594
|
+
--picklist-controls-button-icon-disabled: #d4d4d4;
|
|
1595
|
+
--picklist-controls-button-radius: 5px;
|
|
1596
|
+
--picklist-focus-ringWidth: 2px;
|
|
1597
|
+
--picklist-focus-ringColor: #11162d;
|
|
1598
|
+
--picklist-focus-ringOffset: 1px;
|
|
1599
|
+
--popover-padding-x: 16px; /* Horizontal padding */
|
|
1600
|
+
--popover-padding-y: 10px; /* Vertical padding */
|
|
1601
|
+
--popover-background: #0a0e1f; /* Popover background color */
|
|
1602
|
+
--popover-radius: 5px; /* Popover border radius */
|
|
1603
|
+
--popover-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Popover elevation shadow */
|
|
1604
|
+
--popover-border-color: #1a2244; /* Popover border color */
|
|
1605
|
+
--popover-border-width: 1px; /* Popover border width */
|
|
1606
|
+
--popover-arrow-size: 8px; /* Arrow/pointer size */
|
|
1607
|
+
--popover-offset: 10px; /* Distance from trigger element */
|
|
1608
|
+
--popover-maxWidth: 350px; /* Maximum width */
|
|
1609
|
+
--popover-zIndex: 1100; /* Z-index for stacking */
|
|
1610
|
+
--progress-bar-track-height: 8px;
|
|
1611
|
+
--progress-bar-track-background: rgba(255, 255, 255, 0.15); /* Track background - semi-transparent for dark backgrounds */
|
|
1612
|
+
--progress-bar-track-radius: 9999px;
|
|
1613
|
+
--progress-bar-fill-background: #f97316; /* Fill color - visible accent */
|
|
1614
|
+
--progress-bar-label-color: #ffffff; /* Label text on fill */
|
|
1615
|
+
--progress-spinner-size: 48px; /* Default spinner size (width and height) */
|
|
1616
|
+
--progress-spinner-strokeWidth: 4px; /* Stroke width of the spinner circle */
|
|
1617
|
+
--progress-spinner-color: #11162d; /* Spinner stroke color */
|
|
1618
|
+
--progress-spinner-fill: transparent; /* Spinner fill color (typically transparent) */
|
|
1619
|
+
--progress-spinner-animation-duration: 2s; /* Duration of the spinner animation */
|
|
1620
|
+
--progress-spinner-track-color: #e5e5e5; /* Background track circle color */
|
|
1621
|
+
--radio-size-sm: 16px; /* Small radio */
|
|
1622
|
+
--radio-size-md: 20px; /* Medium radio (default) */
|
|
1623
|
+
--radio-size-lg: 24px; /* Large radio */
|
|
1624
|
+
--radio-dotSize-sm: 6px;
|
|
1625
|
+
--radio-dotSize-md: 8px;
|
|
1626
|
+
--radio-dotSize-lg: 10px;
|
|
1627
|
+
--radio-border-width: 2px;
|
|
1628
|
+
--radio-border-color-default: #2e3b75; /* Visible on dark backgrounds */
|
|
1629
|
+
--radio-border-color-hover: #525d8f;
|
|
1630
|
+
--radio-border-color-checked: #f97316; /* Accent color when checked */
|
|
1631
|
+
--radio-border-color-focus: #f97316;
|
|
1632
|
+
--radio-border-color-disabled: #1a2244;
|
|
1633
|
+
--radio-border-color-error: #ef4444;
|
|
1634
|
+
--radio-background-default: transparent; /* Transparent to show dark page background */
|
|
1635
|
+
--radio-background-checked: #f97316; /* Bright accent for visibility on dark backgrounds */
|
|
1636
|
+
--radio-background-disabled: #11162d;
|
|
1637
|
+
--radio-background-hover: #11162d;
|
|
1638
|
+
--radio-dot-color: #ffffff;
|
|
1639
|
+
--radio-label-gap: 10px;
|
|
1640
|
+
--radio-label-color-default: #ffffff;
|
|
1641
|
+
--radio-label-color-disabled: #7680a9;
|
|
1642
|
+
--radio-focus-ringWidth: 2px;
|
|
1643
|
+
--radio-focus-ringColor: #f97316;
|
|
1644
|
+
--radio-focus-ringOffset: 2px;
|
|
1645
|
+
--rating-star-size: 24px; /* Size of each star icon */
|
|
1646
|
+
--rating-star-gap: 4px; /* Gap between stars */
|
|
1647
|
+
--rating-star-color-default: #d4d4d4; /* Empty star color */
|
|
1648
|
+
--rating-star-color-active: #fbbf24; /* Filled/active star color */
|
|
1649
|
+
--rating-star-color-hover: #f59e0b; /* Star hover color */
|
|
1650
|
+
--rating-star-color-disabled: #e5e5e5; /* Disabled star color */
|
|
1651
|
+
--rating-star-color-disabledActive: #a3a3a3; /* Disabled active star color */
|
|
1652
|
+
--rating-cancel-size: 20px; /* Size of cancel button icon */
|
|
1653
|
+
--rating-cancel-color-default: #a3a3a3; /* Cancel button default color */
|
|
1654
|
+
--rating-cancel-color-hover: #ef4444; /* Cancel button hover color */
|
|
1655
|
+
--rating-focus-ringWidth: 2px;
|
|
1656
|
+
--rating-focus-ringColor: #11162d;
|
|
1657
|
+
--rating-focus-ringOffset: 2px;
|
|
1658
|
+
--row-background-default: #0a0e1f; /* Default row background */
|
|
1659
|
+
--row-background-hover: #060813; /* Row background on hover */
|
|
1660
|
+
--row-background-selected: #1a2244; /* Selected row background */
|
|
1661
|
+
--row-background-striped: #11162d; /* Striped row background (alternate) */
|
|
1662
|
+
--row-text-default: #ffffff; /* Row text color */
|
|
1663
|
+
--row-border-color: #1a2244; /* Row border color */
|
|
1664
|
+
--row-border-width: 1px; /* Row border width */
|
|
1665
|
+
--row-padding-x: 16px; /* Horizontal cell padding */
|
|
1666
|
+
--row-padding-y: 10px; /* Vertical cell padding */
|
|
1667
|
+
--row-height: 48px; /* Minimum row height */
|
|
1668
|
+
--scroll-panel-background: transparent; /* Scroll panel container background */
|
|
1669
|
+
--scroll-panel-scrollbar-size: 6px; /* Scrollbar track width/height */
|
|
1670
|
+
--scroll-panel-scrollbar-padding: 2px; /* Padding around scrollbar */
|
|
1671
|
+
--scroll-panel-scrollbar-track-background: #060813; /* Scrollbar track background */
|
|
1672
|
+
--scroll-panel-scrollbar-track-radius: 9999px; /* Scrollbar track border radius */
|
|
1673
|
+
--scroll-panel-scrollbar-thumb-background-default: #d4d4d4; /* Scrollbar thumb background */
|
|
1674
|
+
--scroll-panel-scrollbar-thumb-background-hover: #a3a3a3; /* Scrollbar thumb hover background */
|
|
1675
|
+
--scroll-panel-scrollbar-thumb-background-active: #737373; /* Scrollbar thumb active background */
|
|
1676
|
+
--scroll-panel-scrollbar-thumb-radius: 9999px; /* Scrollbar thumb border radius */
|
|
1677
|
+
--scroll-panel-scrollbar-thumb-minSize: 24px; /* Minimum scrollbar thumb size */
|
|
1678
|
+
--scroll-panel-transition-duration: 150ms; /* Scrollbar visibility transition */
|
|
1679
|
+
--scroll-top-size: 40px; /* Size of the scroll top button */
|
|
1680
|
+
--scroll-top-background-default: #11162d; /* Default background color */
|
|
1681
|
+
--scroll-top-background-hover: #fb923c; /* Hover background color */
|
|
1682
|
+
--scroll-top-background-active: #ea580c; /* Active background color */
|
|
1683
|
+
--scroll-top-icon-color: #0a0e1f; /* Icon color */
|
|
1684
|
+
--scroll-top-icon-size: 20px; /* Icon size */
|
|
1685
|
+
--scroll-top-radius: 9999px; /* Border radius (circular by default) */
|
|
1686
|
+
--scroll-top-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Box shadow for elevation */
|
|
1687
|
+
--scroll-top-position-bottom: 26px; /* Distance from bottom of viewport */
|
|
1688
|
+
--scroll-top-position-right: 26px; /* Distance from right of viewport */
|
|
1689
|
+
--scroll-top-transition-duration: 200ms; /* Transition duration for visibility */
|
|
1690
|
+
--scroll-top-focus-ringColor: #f97316; /* Focus ring color */
|
|
1691
|
+
--scroll-top-focus-ringWidth: 2px; /* Focus ring width */
|
|
1692
|
+
--scroll-top-focus-ringOffset: 2px; /* Focus ring offset */
|
|
1693
|
+
--selectButton-gap: 4px; /* Gap between option buttons */
|
|
1694
|
+
--selectButton-padding-x: 16px; /* Horizontal padding for option buttons */
|
|
1695
|
+
--selectButton-padding-y: 6px; /* Vertical padding for option buttons */
|
|
1696
|
+
--selectButton-radius: 5px; /* Border radius for option buttons */
|
|
1697
|
+
--selectButton-border-width: 1px; /* Border width for option buttons */
|
|
1698
|
+
--selectButton-border-color-default: #d4d4d4; /* Default border color */
|
|
1699
|
+
--selectButton-border-color-hover: #a3a3a3; /* Hover border color */
|
|
1700
|
+
--selectButton-border-color-selected: #11162d; /* Selected border color */
|
|
1701
|
+
--selectButton-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
1702
|
+
--selectButton-background-default: #0a0e1f; /* Default background color */
|
|
1703
|
+
--selectButton-background-hover: #fafafa; /* Hover background color */
|
|
1704
|
+
--selectButton-background-selected: #11162d; /* Selected background color */
|
|
1705
|
+
--selectButton-background-disabled: #f5f5f5; /* Disabled background color */
|
|
1706
|
+
--selectButton-text-default: #ffffff; /* Default text color */
|
|
1707
|
+
--selectButton-text-hover: #ffffff; /* Hover text color */
|
|
1708
|
+
--selectButton-text-selected: #0a0e1f; /* Selected text color */
|
|
1709
|
+
--selectButton-text-disabled: #7680a9; /* Disabled text color */
|
|
1710
|
+
--selectButton-focus-ringWidth: 2px; /* Focus ring width */
|
|
1711
|
+
--selectButton-focus-ringColor: #f97316; /* Focus ring color */
|
|
1712
|
+
--selectButton-focus-ringOffset: 2px; /* Focus ring offset */
|
|
1713
|
+
--selectButton-fontSize: 14px; /* Font size for option text */
|
|
1714
|
+
--selectButton-fontWeight-default: 500; /* Default font weight */
|
|
1715
|
+
--selectButton-fontWeight-selected: 600; /* Selected font weight */
|
|
1716
|
+
--selectButton-minHeight: 36px; /* Minimum height of option buttons */
|
|
1717
|
+
--selectButton-transition-duration: 150ms; /* Transition duration for state changes */
|
|
1718
|
+
--select-height-sm: 32px;
|
|
1719
|
+
--select-height-md: 40px;
|
|
1720
|
+
--select-height-lg: 48px;
|
|
1721
|
+
--select-padding-x: 16px;
|
|
1722
|
+
--select-padding-y: 10px;
|
|
1723
|
+
--select-fontSize-sm: 14px;
|
|
1724
|
+
--select-fontSize-md: 15px;
|
|
1725
|
+
--select-fontSize-lg: 16px;
|
|
1726
|
+
--select-radius: 5px;
|
|
1727
|
+
--select-border-width: 1px;
|
|
1728
|
+
--select-border-color-default: #d4d4d4;
|
|
1729
|
+
--select-border-color-hover: #a3a3a3;
|
|
1730
|
+
--select-border-color-focus: #11162d;
|
|
1731
|
+
--select-border-color-disabled: #e5e5e5;
|
|
1732
|
+
--select-border-color-error: #ef4444;
|
|
1733
|
+
--select-background-default: #0a0e1f;
|
|
1734
|
+
--select-background-disabled: #f5f5f5;
|
|
1735
|
+
--select-background-hover: #0a0e1f;
|
|
1736
|
+
--select-text-default: #ffffff;
|
|
1737
|
+
--select-text-placeholder: #7680a9;
|
|
1738
|
+
--select-text-disabled: #7680a9;
|
|
1739
|
+
--select-icon-size: 16px;
|
|
1740
|
+
--select-icon-color-default: #737373;
|
|
1741
|
+
--select-icon-color-disabled: #d4d4d4;
|
|
1742
|
+
--select-dropdown-background: #0a0e1f;
|
|
1743
|
+
--select-dropdown-border: #e5e5e5;
|
|
1744
|
+
--select-dropdown-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
1745
|
+
--select-dropdown-radius: 5px;
|
|
1746
|
+
--select-dropdown-maxHeight: 280px;
|
|
1747
|
+
--select-option-padding-x: 16px;
|
|
1748
|
+
--select-option-padding-y: 10px;
|
|
1749
|
+
--select-option-background-default: transparent;
|
|
1750
|
+
--select-option-background-hover: #f5f5f5;
|
|
1751
|
+
--select-option-background-selected: #11162d;
|
|
1752
|
+
--select-option-text-default: #ffffff;
|
|
1753
|
+
--select-option-text-selected: #ffffff;
|
|
1754
|
+
--select-focus-ringWidth: 2px;
|
|
1755
|
+
--select-focus-ringColor: #11162d;
|
|
1756
|
+
--select-focus-ringOffset: 1px;
|
|
1757
|
+
--sidebar-background: #11162d; /* Sidebar background color */
|
|
1758
|
+
--sidebar-border-color: #242e5c; /* Sidebar border color */
|
|
1759
|
+
--sidebar-border-width: 1px; /* Sidebar border width */
|
|
1760
|
+
--sidebar-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Sidebar shadow */
|
|
1761
|
+
--sidebar-header-padding: 26px; /* Header section padding */
|
|
1762
|
+
--sidebar-header-background: #11162d; /* Header background */
|
|
1763
|
+
--sidebar-header-borderColor: #242e5c; /* Header bottom border color */
|
|
1764
|
+
--sidebar-header-title-color: #0a0e1f; /* Header title text color */
|
|
1765
|
+
--sidebar-header-title-fontSize: 18px; /* Header title font size */
|
|
1766
|
+
--sidebar-header-title-fontWeight: 600; /* Header title font weight */
|
|
1767
|
+
--sidebar-content-padding: 26px; /* Content area padding */
|
|
1768
|
+
--sidebar-content-color: #0a0e1f; /* Content text color */
|
|
1769
|
+
--sidebar-closeButton-size: 32px; /* Close button size */
|
|
1770
|
+
--sidebar-closeButton-iconSize: 16px; /* Close icon size */
|
|
1771
|
+
--sidebar-closeButton-color-default: #7680a9; /* Close button icon color */
|
|
1772
|
+
--sidebar-closeButton-color-hover: #0a0e1f; /* Close button hover color */
|
|
1773
|
+
--sidebar-closeButton-background-hover: #1a2244; /* Close button hover background */
|
|
1774
|
+
--sidebar-closeButton-radius: 5px; /* Close button border radius */
|
|
1775
|
+
--sidebar-overlay-background: rgba(0, 0, 0, 0.6); /* Overlay backdrop color */
|
|
1776
|
+
--sidebar-width-default: 320px; /* Default sidebar width */
|
|
1777
|
+
--sidebar-width-fullScreen: 100%; /* Full screen width */
|
|
1778
|
+
--sidebar-zIndex-overlay: 1000; /* Overlay z-index */
|
|
1779
|
+
--sidebar-zIndex-sidebar: 1001; /* Sidebar z-index */
|
|
1780
|
+
--sidebar-transition-duration: 300ms; /* Slide animation duration */
|
|
1781
|
+
--skeleton-background: #e5e5e5; /* Base skeleton background color */
|
|
1782
|
+
--skeleton-highlight: #d4d4d4; /* Animation highlight/shimmer color */
|
|
1783
|
+
--skeleton-radius: 5px; /* Default border radius for rectangle skeleton */
|
|
1784
|
+
--skeleton-animation-duration: 1.5s; /* Wave animation duration */
|
|
1785
|
+
--slider-track-height: 6px;
|
|
1786
|
+
--slider-track-background-default: rgba(255, 255, 255, 0.15); /* Inactive track - semi-transparent white works on any dark background */
|
|
1787
|
+
--slider-track-background-fill: #f97316; /* Active/filled track - visible accent color */
|
|
1788
|
+
--slider-track-background-disabled: rgba(255, 255, 255, 0.08); /* Disabled track - subtle semi-transparent */
|
|
1789
|
+
--slider-track-radius: 9999px;
|
|
1790
|
+
--slider-thumb-size: 20px;
|
|
1791
|
+
--slider-thumb-background-default: #f97316; /* Thumb - visible accent color */
|
|
1792
|
+
--slider-thumb-background-hover: #fb923c; /* Thumb hover - lighter accent */
|
|
1793
|
+
--slider-thumb-background-disabled: rgba(255, 255, 255, 0.25); /* Disabled thumb - semi-transparent */
|
|
1794
|
+
--slider-thumb-border-width: 0px;
|
|
1795
|
+
--slider-thumb-border-color: transparent;
|
|
1796
|
+
--slider-thumb-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
1797
|
+
--slider-focus-ringWidth: 2px;
|
|
1798
|
+
--slider-focus-ringColor: #f97316;
|
|
1799
|
+
--slider-focus-ringOffset: 2px;
|
|
1800
|
+
--speed-dial-button-size: 56px;
|
|
1801
|
+
--speed-dial-button-background-default: #f97316;
|
|
1802
|
+
--speed-dial-button-background-hover: #fb923c;
|
|
1803
|
+
--speed-dial-button-background-active: #ea580c;
|
|
1804
|
+
--speed-dial-button-color: #0a0e1f;
|
|
1805
|
+
--speed-dial-button-radius: 9999px;
|
|
1806
|
+
--speed-dial-button-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
1807
|
+
--speed-dial-button-iconSize: 24px;
|
|
1808
|
+
--speed-dial-action-size: 48px;
|
|
1809
|
+
--speed-dial-action-background-default: #0a0e1f;
|
|
1810
|
+
--speed-dial-action-background-hover: #f5f5f5;
|
|
1811
|
+
--speed-dial-action-color-default: #ffffff;
|
|
1812
|
+
--speed-dial-action-color-hover: #11162d;
|
|
1813
|
+
--speed-dial-action-border-width: 1px;
|
|
1814
|
+
--speed-dial-action-border-color: #e5e5e5;
|
|
1815
|
+
--speed-dial-action-radius: 9999px;
|
|
1816
|
+
--speed-dial-action-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
|
|
1817
|
+
--speed-dial-action-iconSize: 20px;
|
|
1818
|
+
--speed-dial-action-gap: 10px;
|
|
1819
|
+
--speed-dial-label-background: #262626;
|
|
1820
|
+
--speed-dial-label-color: #ffffff;
|
|
1821
|
+
--speed-dial-label-padding-x: 10px;
|
|
1822
|
+
--speed-dial-label-padding-y: 4px;
|
|
1823
|
+
--speed-dial-label-radius: 2px;
|
|
1824
|
+
--speed-dial-label-fontSize: 13px;
|
|
1825
|
+
--speed-dial-label-offset: 10px;
|
|
1826
|
+
--speed-dial-focus-ringColor: #f97316;
|
|
1827
|
+
--speed-dial-focus-ringWidth: 2px;
|
|
1828
|
+
--speed-dial-focus-ringOffset: 2px;
|
|
1829
|
+
--speed-dial-transition-duration: 200ms;
|
|
1830
|
+
--split-button-background-primary-default: #f97316;
|
|
1831
|
+
--split-button-background-primary-hover: #fb923c;
|
|
1832
|
+
--split-button-background-primary-active: #ea580c;
|
|
1833
|
+
--split-button-background-primary-disabled: #e5e5e5;
|
|
1834
|
+
--split-button-background-secondary-default: transparent;
|
|
1835
|
+
--split-button-background-secondary-hover: #1a2244;
|
|
1836
|
+
--split-button-background-secondary-active: #f5f5f5;
|
|
1837
|
+
--split-button-background-secondary-disabled: #f5f5f5;
|
|
1838
|
+
--split-button-background-outlined-default: transparent;
|
|
1839
|
+
--split-button-background-outlined-hover: #fafafa;
|
|
1840
|
+
--split-button-background-outlined-active: #f5f5f5;
|
|
1841
|
+
--split-button-background-outlined-disabled: transparent;
|
|
1842
|
+
--split-button-text-primary-default: #0a0e1f;
|
|
1843
|
+
--split-button-text-primary-disabled: #a3a3a3;
|
|
1844
|
+
--split-button-text-secondary-default: #11162d;
|
|
1845
|
+
--split-button-text-secondary-disabled: #a3a3a3;
|
|
1846
|
+
--split-button-text-outlined-default: #11162d;
|
|
1847
|
+
--split-button-text-outlined-disabled: #a3a3a3;
|
|
1848
|
+
--split-button-border-primary-default: #f97316;
|
|
1849
|
+
--split-button-border-primary-hover: #fb923c;
|
|
1850
|
+
--split-button-border-primary-disabled: #e5e5e5;
|
|
1851
|
+
--split-button-border-secondary-default: #2e3b75;
|
|
1852
|
+
--split-button-border-secondary-hover: #2e3b75;
|
|
1853
|
+
--split-button-border-secondary-disabled: #d4d4d4;
|
|
1854
|
+
--split-button-border-outlined-default: #11162d;
|
|
1855
|
+
--split-button-border-outlined-hover: #11162d;
|
|
1856
|
+
--split-button-border-outlined-disabled: #d4d4d4;
|
|
1857
|
+
--split-button-border-width: 1px;
|
|
1858
|
+
--split-button-radius: 5px;
|
|
1859
|
+
--split-button-divider-primary: rgba(255, 255, 255, 0.2);
|
|
1860
|
+
--split-button-divider-secondary: #d4d4d4;
|
|
1861
|
+
--split-button-divider-outlined: #11162d;
|
|
1862
|
+
--split-button-divider-width: 1px;
|
|
1863
|
+
--split-button-size-sm-height: 32px;
|
|
1864
|
+
--split-button-size-sm-paddingX: 10px;
|
|
1865
|
+
--split-button-size-sm-fontSize: 14px;
|
|
1866
|
+
--split-button-size-sm-iconSize: 16px;
|
|
1867
|
+
--split-button-size-sm-gap: 4px;
|
|
1868
|
+
--split-button-size-md-height: 40px;
|
|
1869
|
+
--split-button-size-md-paddingX: 16px;
|
|
1870
|
+
--split-button-size-md-fontSize: 16px;
|
|
1871
|
+
--split-button-size-md-iconSize: 18px;
|
|
1872
|
+
--split-button-size-md-gap: 6px;
|
|
1873
|
+
--split-button-size-lg-height: 48px;
|
|
1874
|
+
--split-button-size-lg-paddingX: 26px;
|
|
1875
|
+
--split-button-size-lg-fontSize: 18px;
|
|
1876
|
+
--split-button-size-lg-iconSize: 20px;
|
|
1877
|
+
--split-button-size-lg-gap: 10px;
|
|
1878
|
+
--split-button-dropdown-background: #0a0e1f;
|
|
1879
|
+
--split-button-dropdown-border: #e5e5e5;
|
|
1880
|
+
--split-button-dropdown-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
1881
|
+
--split-button-dropdown-radius: 5px;
|
|
1882
|
+
--split-button-menu-item-padding-x: 16px;
|
|
1883
|
+
--split-button-menu-item-padding-y: 10px;
|
|
1884
|
+
--split-button-menu-item-gap: 10px;
|
|
1885
|
+
--split-button-menu-item-background-default: transparent;
|
|
1886
|
+
--split-button-menu-item-background-hover: #f5f5f5;
|
|
1887
|
+
--split-button-menu-item-text-default: #ffffff;
|
|
1888
|
+
--split-button-menu-item-icon-color: #7680a9;
|
|
1889
|
+
--split-button-menu-item-icon-size: 16px;
|
|
1890
|
+
--split-button-fontWeight: 600;
|
|
1891
|
+
--split-button-focus-ringColor: #f97316;
|
|
1892
|
+
--split-button-focus-ringWidth: 2px;
|
|
1893
|
+
--split-button-focus-ringOffset: 2px;
|
|
1894
|
+
--split-button-transition-duration: 150ms;
|
|
1895
|
+
--splitter-background: #0a0e1f; /* Splitter container background */
|
|
1896
|
+
--splitter-border-color: #1a2244; /* Splitter border color */
|
|
1897
|
+
--splitter-border-width: 1px; /* Splitter border width */
|
|
1898
|
+
--splitter-border-radius: 5px; /* Splitter border radius */
|
|
1899
|
+
--splitter-gutter-size: 10px; /* Default gutter width/height */
|
|
1900
|
+
--splitter-gutter-background-default: #060813; /* Gutter background color */
|
|
1901
|
+
--splitter-gutter-background-hover: #e5e5e5; /* Gutter hover background */
|
|
1902
|
+
--splitter-gutter-background-active: #11162d; /* Gutter active/dragging background */
|
|
1903
|
+
--splitter-gutter-handle-size: 24px; /* Gutter handle indicator size */
|
|
1904
|
+
--splitter-gutter-handle-color-default: #a3a3a3; /* Gutter handle color */
|
|
1905
|
+
--splitter-gutter-handle-color-hover: #737373; /* Gutter handle hover color */
|
|
1906
|
+
--splitter-gutter-handle-color-active: #ffffff; /* Gutter handle active color */
|
|
1907
|
+
--splitter-panel-minSize: 50px; /* Minimum panel size */
|
|
1908
|
+
--splitter-transition-duration: 150ms; /* Gutter state transition duration */
|
|
1909
|
+
--steps-gap: 16px; /* Gap between step items */
|
|
1910
|
+
--steps-connector-height: 2px; /* Connector line height */
|
|
1911
|
+
--steps-connector-color-incomplete: #242e5c; /* Incomplete connector color */
|
|
1912
|
+
--steps-connector-color-complete: #f97316; /* Completed connector color */
|
|
1913
|
+
--steps-marker-size: 32px; /* Step marker size */
|
|
1914
|
+
--steps-marker-fontSize: 14px; /* Step number font size */
|
|
1915
|
+
--steps-marker-fontWeight: 600; /* Step number font weight */
|
|
1916
|
+
--steps-marker-background-incomplete: transparent; /* Incomplete step marker background */
|
|
1917
|
+
--steps-marker-background-active: #f97316; /* Active step marker background */
|
|
1918
|
+
--steps-marker-background-complete: #f97316; /* Completed step marker background */
|
|
1919
|
+
--steps-marker-text-incomplete: #525d8f; /* Incomplete step number color */
|
|
1920
|
+
--steps-marker-text-active: #ffffff; /* Active step number color */
|
|
1921
|
+
--steps-marker-text-complete: #ffffff; /* Completed step number/icon color */
|
|
1922
|
+
--steps-marker-border-width: 2px; /* Marker border width */
|
|
1923
|
+
--steps-marker-border-color-incomplete: #242e5c; /* Incomplete marker border color */
|
|
1924
|
+
--steps-marker-border-color-active: #f97316; /* Active marker border color */
|
|
1925
|
+
--steps-marker-border-color-complete: #f97316; /* Completed marker border color */
|
|
1926
|
+
--steps-label-fontSize: 14px; /* Step label font size */
|
|
1927
|
+
--steps-label-fontWeight: 500; /* Step label font weight */
|
|
1928
|
+
--steps-label-color-incomplete: #525d8f; /* Incomplete step label color */
|
|
1929
|
+
--steps-label-color-active: #ffffff; /* Active step label color */
|
|
1930
|
+
--steps-label-color-complete: #ffffff; /* Completed step label color */
|
|
1931
|
+
--steps-label-gap: 6px; /* Gap between marker and label */
|
|
1932
|
+
--steps-focus-ringWidth: 2px; /* Focus ring width */
|
|
1933
|
+
--steps-focus-ringColor: #f97316; /* Focus ring color */
|
|
1934
|
+
--steps-focus-ringOffset: 2px; /* Focus ring offset */
|
|
1935
|
+
--tabmenu-background: transparent; /* TabMenu container background */
|
|
1936
|
+
--tabmenu-border-width: 1px; /* Bottom border width */
|
|
1937
|
+
--tabmenu-border-color: #1a2244; /* Bottom border color */
|
|
1938
|
+
--tabmenu-item-padding: 10px 16px; /* Tab item padding */
|
|
1939
|
+
--tabmenu-item-gap: 4px; /* Gap between icon and label */
|
|
1940
|
+
--tabmenu-item-color-default: #7680a9; /* Tab text color */
|
|
1941
|
+
--tabmenu-item-color-hover: #ffffff; /* Tab text color on hover */
|
|
1942
|
+
--tabmenu-item-color-active: #11162d; /* Active tab text color */
|
|
1943
|
+
--tabmenu-item-color-disabled: #a3a3a3; /* Disabled tab text color */
|
|
1944
|
+
--tabmenu-item-background-default: transparent; /* Tab background */
|
|
1945
|
+
--tabmenu-item-background-hover: #060813; /* Tab background on hover */
|
|
1946
|
+
--tabmenu-item-background-active: transparent; /* Active tab background */
|
|
1947
|
+
--tabmenu-icon-size: 16px; /* Icon size */
|
|
1948
|
+
--tabmenu-inkbar-height: 2px; /* Active indicator height */
|
|
1949
|
+
--tabmenu-inkbar-color: #11162d; /* Active indicator color */
|
|
1950
|
+
--tabmenu-inkbar-borderRadius: 2px; /* Active indicator border radius */
|
|
1951
|
+
--tabmenu-transition-duration: 200ms; /* Animation duration */
|
|
1952
|
+
--tabs-nav-borderColor: #1a2244; /* Border color for tab navigation */
|
|
1953
|
+
--tabs-nav-borderWidth: 1px;
|
|
1954
|
+
--tabs-tab-padding-x: 16px; /* Horizontal tab padding */
|
|
1955
|
+
--tabs-tab-padding-y: 10px; /* Vertical tab padding */
|
|
1956
|
+
--tabs-tab-text-default: #9ea5c2; /* Inactive tab text */
|
|
1957
|
+
--tabs-tab-text-hover: #ffffff; /* Tab text on hover */
|
|
1958
|
+
--tabs-tab-text-active: #f97316; /* Active tab text - visible accent */
|
|
1959
|
+
--tabs-tab-text-disabled: rgba(255, 255, 255, 0.38);
|
|
1960
|
+
--tabs-tab-background-default: transparent;
|
|
1961
|
+
--tabs-tab-background-hover: rgba(255, 255, 255, 0.05);
|
|
1962
|
+
--tabs-tab-background-active: transparent;
|
|
1963
|
+
--tabs-indicator-color: #f97316; /* Active tab indicator - visible accent */
|
|
1964
|
+
--tabs-indicator-height: 2px; /* Active tab indicator thickness */
|
|
1965
|
+
--tabs-content-padding: 16px; /* Tab panel content padding */
|
|
1966
|
+
--tabs-focus-ringWidth: 2px;
|
|
1967
|
+
--tabs-focus-ringColor: #f97316;
|
|
1968
|
+
--tabs-focus-ringOffset: 2px;
|
|
1969
|
+
--tag-padding-x: 6px; /* Horizontal padding */
|
|
1970
|
+
--tag-padding-y: 4px; /* Vertical padding */
|
|
1971
|
+
--tag-gap: 4px; /* Gap between icon and text */
|
|
1972
|
+
--tag-radius-default: 2px; /* Default border radius */
|
|
1973
|
+
--tag-radius-rounded: 9999px; /* Fully rounded (pill) border radius */
|
|
1974
|
+
--tag-fontSize: 12px; /* Tag font size */
|
|
1975
|
+
--tag-fontWeight: 600; /* Tag font weight */
|
|
1976
|
+
--tag-iconSize: 12px; /* Icon size inside tag */
|
|
1977
|
+
--tag-background-brand: #f97316; /* Brand color tag */
|
|
1978
|
+
--tag-background-accent: #f59e0b; /* Accent color tag */
|
|
1979
|
+
--tag-background-neutral: rgba(255, 255, 255, 0.12); /* Neutral/muted tag */
|
|
1980
|
+
--tag-background-success: #22c55e; /* Success status tag */
|
|
1981
|
+
--tag-background-warning: #f59e0b; /* Warning status tag */
|
|
1982
|
+
--tag-background-danger: #ef4444; /* Danger/error status tag */
|
|
1983
|
+
--tag-background-info: #3b82f6; /* Info status tag */
|
|
1984
|
+
--tag-text-brand: #ffffff; /* Text on brand background */
|
|
1985
|
+
--tag-text-accent: #171717; /* Text on accent background (dark for contrast) */
|
|
1986
|
+
--tag-text-neutral: #ffffff; /* Text on neutral background */
|
|
1987
|
+
--tag-text-success: #ffffff; /* Text on success background */
|
|
1988
|
+
--tag-text-warning: #171717; /* Text on warning background (dark for contrast) */
|
|
1989
|
+
--tag-text-danger: #ffffff; /* Text on danger background */
|
|
1990
|
+
--tag-text-info: #ffffff; /* Text on info background */
|
|
1991
|
+
--terminal-background: #171717; /* Terminal background color */
|
|
1992
|
+
--terminal-border-color: #404040; /* Terminal border color */
|
|
1993
|
+
--terminal-border-width: 1px; /* Terminal border width */
|
|
1994
|
+
--terminal-border-radius: 5px; /* Terminal border radius */
|
|
1995
|
+
--terminal-padding: 16px; /* Terminal content padding */
|
|
1996
|
+
--terminal-font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace; /* Terminal font family */
|
|
1997
|
+
--terminal-font-size: 14px; /* Terminal font size */
|
|
1998
|
+
--terminal-font-lineHeight: 1.5; /* Terminal line height */
|
|
1999
|
+
--terminal-text-color: #f5f5f5; /* Terminal text color */
|
|
2000
|
+
--terminal-prompt-color: #11162d; /* Prompt text color */
|
|
2001
|
+
--terminal-prompt-gap: 10px; /* Gap between prompt and input */
|
|
2002
|
+
--terminal-response-color: #d4d4d4; /* Response text color */
|
|
2003
|
+
--terminal-welcome-color: #a3a3a3; /* Welcome message color */
|
|
2004
|
+
--terminal-welcome-marginBottom: 16px; /* Space below welcome message */
|
|
2005
|
+
--terminal-command-gap: 6px; /* Gap between commands */
|
|
2006
|
+
--terminal-input-caretColor: #11162d; /* Input caret color */
|
|
2007
|
+
--textarea-padding-x: 16px;
|
|
2008
|
+
--textarea-padding-y: 10px;
|
|
2009
|
+
--textarea-minHeight: 80px;
|
|
2010
|
+
--textarea-fontSize: 15px;
|
|
2011
|
+
--textarea-lineHeight: 1.5;
|
|
2012
|
+
--textarea-radius: 5px;
|
|
2013
|
+
--textarea-border-width: 1px;
|
|
2014
|
+
--textarea-border-color-default: #d4d4d4;
|
|
2015
|
+
--textarea-border-color-hover: #a3a3a3;
|
|
2016
|
+
--textarea-border-color-focus: #11162d;
|
|
2017
|
+
--textarea-border-color-disabled: #e5e5e5;
|
|
2018
|
+
--textarea-border-color-error: #ef4444;
|
|
2019
|
+
--textarea-background-default: #0a0e1f;
|
|
2020
|
+
--textarea-background-disabled: #f5f5f5;
|
|
2021
|
+
--textarea-text-default: #ffffff;
|
|
2022
|
+
--textarea-text-placeholder: #7680a9;
|
|
2023
|
+
--textarea-text-disabled: #7680a9;
|
|
2024
|
+
--textarea-focus-ringWidth: 2px;
|
|
2025
|
+
--textarea-focus-ringColor: #11162d;
|
|
2026
|
+
--textarea-focus-ringOffset: 1px;
|
|
2027
|
+
--tieredmenu-background: #11162d; /* Menu background */
|
|
2028
|
+
--tieredmenu-padding: 4px; /* Menu container padding */
|
|
2029
|
+
--tieredmenu-border-width: 1px; /* Border width */
|
|
2030
|
+
--tieredmenu-border-color: #1a2244; /* Border color */
|
|
2031
|
+
--tieredmenu-border-radius: 5px; /* Border radius */
|
|
2032
|
+
--tieredmenu-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08); /* Menu shadow (popup mode) */
|
|
2033
|
+
--tieredmenu-minWidth: 200px; /* Minimum menu width */
|
|
2034
|
+
--tieredmenu-item-padding: 6px 10px; /* Item padding */
|
|
2035
|
+
--tieredmenu-item-gap: 4px; /* Gap between icon and label */
|
|
2036
|
+
--tieredmenu-item-color-default: #ffffff; /* Item text color */
|
|
2037
|
+
--tieredmenu-item-color-hover: #ffffff; /* Item text color on hover */
|
|
2038
|
+
--tieredmenu-item-color-active: #11162d; /* Active item text color */
|
|
2039
|
+
--tieredmenu-item-color-disabled: #7680a9; /* Disabled item text color */
|
|
2040
|
+
--tieredmenu-item-background-default: transparent; /* Item background */
|
|
2041
|
+
--tieredmenu-item-background-hover: #060813; /* Item background on hover */
|
|
2042
|
+
--tieredmenu-item-background-active: #78350f; /* Active item background */
|
|
2043
|
+
--tieredmenu-item-borderRadius: 5px; /* Item border radius */
|
|
2044
|
+
--tieredmenu-icon-size: 16px; /* Icon size */
|
|
2045
|
+
--tieredmenu-icon-color-default: #7680a9; /* Icon color */
|
|
2046
|
+
--tieredmenu-icon-color-hover: #ffffff; /* Icon color on hover */
|
|
2047
|
+
--tieredmenu-submenu-offset: 2px; /* Submenu offset from parent */
|
|
2048
|
+
--tieredmenu-separator-color: #1a2244; /* Separator color */
|
|
2049
|
+
--tieredmenu-separator-margin: 4px; /* Separator margin */
|
|
2050
|
+
--tieredmenu-transition-duration: 150ms; /* Animation duration */
|
|
2051
|
+
--timeline-line-width: 2px; /* Width of the vertical timeline line */
|
|
2052
|
+
--timeline-line-color: #d4d4d4; /* Color of the timeline line */
|
|
2053
|
+
--timeline-marker-size: 12px; /* Size of the timeline marker dot */
|
|
2054
|
+
--timeline-marker-background: #11162d; /* Background color of the marker */
|
|
2055
|
+
--timeline-marker-border-width: 2px; /* Border width of the marker */
|
|
2056
|
+
--timeline-marker-border-color: #0a0e1f; /* Border color of the marker */
|
|
2057
|
+
--timeline-marker-ring-size: 24px; /* Size of the outer ring around the marker */
|
|
2058
|
+
--timeline-marker-ring-color: #f5f5f5; /* Color of the outer ring */
|
|
2059
|
+
--timeline-content-gap: 16px; /* Gap between timeline items */
|
|
2060
|
+
--timeline-content-padding: 16px; /* Padding around content area */
|
|
2061
|
+
--timeline-event-title-color: #ffffff; /* Event title color */
|
|
2062
|
+
--timeline-event-title-fontSize: 16px; /* Event title font size */
|
|
2063
|
+
--timeline-event-title-fontWeight: 600; /* Event title font weight */
|
|
2064
|
+
--timeline-event-date-color: #7680a9; /* Event date color */
|
|
2065
|
+
--timeline-event-date-fontSize: 12px; /* Event date font size */
|
|
2066
|
+
--timeline-event-description-color: #7680a9; /* Event description color */
|
|
2067
|
+
--timeline-event-description-fontSize: 14px; /* Event description font size */
|
|
2068
|
+
--timeline-colors-primary: #11162d; /* Primary marker color */
|
|
2069
|
+
--timeline-colors-success: #22c55e; /* Success marker color */
|
|
2070
|
+
--timeline-colors-warning: #f59e0b; /* Warning marker color */
|
|
2071
|
+
--timeline-colors-danger: #ef4444; /* Danger marker color */
|
|
2072
|
+
--toast-container-gap: 10px; /* Gap between stacked toasts */
|
|
2073
|
+
--toast-container-padding: 16px; /* Container padding from screen edge */
|
|
2074
|
+
--toast-container-zIndex: 1200; /* Toast container z-index */
|
|
2075
|
+
--toast-container-maxWidth: 400px; /* Maximum toast width */
|
|
2076
|
+
--toast-background-default: #1a2244; /* Default toast background */
|
|
2077
|
+
--toast-background-success: rgba(34, 197, 94, 0.15); /* Success toast background */
|
|
2078
|
+
--toast-background-info: rgba(59, 130, 246, 0.15); /* Info toast background */
|
|
2079
|
+
--toast-background-warning: rgba(245, 158, 11, 0.15); /* Warning toast background */
|
|
2080
|
+
--toast-background-error: rgba(239, 68, 68, 0.15); /* Error toast background */
|
|
2081
|
+
--toast-border-width: 1px; /* Toast border width */
|
|
2082
|
+
--toast-border-color-default: #1a2244; /* Default border color */
|
|
2083
|
+
--toast-border-color-success: #22c55e; /* Success border color */
|
|
2084
|
+
--toast-border-color-info: #3b82f6; /* Info border color */
|
|
2085
|
+
--toast-border-color-warning: #f59e0b; /* Warning border color */
|
|
2086
|
+
--toast-border-color-error: #ef4444; /* Error border color */
|
|
2087
|
+
--toast-radius: 5px; /* Toast border radius */
|
|
2088
|
+
--toast-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08); /* Toast elevation shadow */
|
|
2089
|
+
--toast-padding-x: 16px; /* Horizontal padding */
|
|
2090
|
+
--toast-padding-y: 16px; /* Vertical padding */
|
|
2091
|
+
--toast-icon-size: 20px; /* Icon size */
|
|
2092
|
+
--toast-icon-color-default: #7680a9; /* Default icon color */
|
|
2093
|
+
--toast-icon-color-success: #22c55e; /* Success icon color */
|
|
2094
|
+
--toast-icon-color-info: #3b82f6; /* Info icon color */
|
|
2095
|
+
--toast-icon-color-warning: #f59e0b; /* Warning icon color */
|
|
2096
|
+
--toast-icon-color-error: #ef4444; /* Error icon color */
|
|
2097
|
+
--toast-icon-gap: 10px; /* Gap between icon and content */
|
|
2098
|
+
--toast-content-gap: 4px; /* Gap between summary and detail */
|
|
2099
|
+
--toast-summary-color-default: #ffffff; /* Summary text color */
|
|
2100
|
+
--toast-summary-color-success: #4ade80; /* Success summary color */
|
|
2101
|
+
--toast-summary-color-info: #60a5fa; /* Info summary color */
|
|
2102
|
+
--toast-summary-color-warning: #fbbf24; /* Warning summary color */
|
|
2103
|
+
--toast-summary-color-error: #f87171; /* Error summary color */
|
|
2104
|
+
--toast-summary-fontSize: 14px; /* Summary font size */
|
|
2105
|
+
--toast-summary-fontWeight: 600; /* Summary font weight */
|
|
2106
|
+
--toast-detail-color: #7680a9; /* Detail text color */
|
|
2107
|
+
--toast-detail-fontSize: 13px; /* Detail font size */
|
|
2108
|
+
--toast-closeButton-size: 28px; /* Close button size */
|
|
2109
|
+
--toast-closeButton-iconSize: 14px; /* Close icon size */
|
|
2110
|
+
--toast-closeButton-color-default: #7680a9; /* Close button color */
|
|
2111
|
+
--toast-closeButton-color-hover: #ffffff; /* Close button hover color */
|
|
2112
|
+
--toast-closeButton-background-hover: #060813; /* Close button hover background */
|
|
2113
|
+
--toast-closeButton-radius: 2px; /* Close button border radius */
|
|
2114
|
+
--toast-progress-height: 3px; /* Progress bar height */
|
|
2115
|
+
--toast-progress-background: #060813; /* Progress bar track background */
|
|
2116
|
+
--toast-progress-fill-default: #11162d; /* Default progress fill */
|
|
2117
|
+
--toast-progress-fill-success: #22c55e; /* Success progress fill */
|
|
2118
|
+
--toast-progress-fill-info: #3b82f6; /* Info progress fill */
|
|
2119
|
+
--toast-progress-fill-warning: #f59e0b; /* Warning progress fill */
|
|
2120
|
+
--toast-progress-fill-error: #ef4444; /* Error progress fill */
|
|
2121
|
+
--toggleButton-height-sm: 32px; /* Small toggle button height */
|
|
2122
|
+
--toggleButton-height-md: 40px; /* Medium toggle button height */
|
|
2123
|
+
--toggleButton-height-lg: 48px; /* Large toggle button height */
|
|
2124
|
+
--toggleButton-padding-sm-x: 10px; /* Small toggle button horizontal padding */
|
|
2125
|
+
--toggleButton-padding-sm-y: 4px; /* Small toggle button vertical padding */
|
|
2126
|
+
--toggleButton-padding-md-x: 16px; /* Medium toggle button horizontal padding */
|
|
2127
|
+
--toggleButton-padding-md-y: 6px; /* Medium toggle button vertical padding */
|
|
2128
|
+
--toggleButton-padding-lg-x: 26px; /* Large toggle button horizontal padding */
|
|
2129
|
+
--toggleButton-padding-lg-y: 10px; /* Large toggle button vertical padding */
|
|
2130
|
+
--toggleButton-gap: 6px; /* Gap between icon and label */
|
|
2131
|
+
--toggleButton-background-off-default: #e5e5e5; /* Toggle button off state background */
|
|
2132
|
+
--toggleButton-background-off-hover: #d4d4d4; /* Toggle button off state hover background */
|
|
2133
|
+
--toggleButton-background-on-default: #11162d; /* Toggle button on state background */
|
|
2134
|
+
--toggleButton-background-on-hover: #11162d; /* Toggle button on state hover background */
|
|
2135
|
+
--toggleButton-background-disabled: #f5f5f5; /* Toggle button disabled background */
|
|
2136
|
+
--toggleButton-text-off-default: #ffffff; /* Toggle button off state text color */
|
|
2137
|
+
--toggleButton-text-on-default: #0a0e1f; /* Toggle button on state text color */
|
|
2138
|
+
--toggleButton-text-disabled: #a3a3a3; /* Toggle button disabled text color */
|
|
2139
|
+
--toggleButton-border-width: 1px; /* Toggle button border width */
|
|
2140
|
+
--toggleButton-border-off-default: #d4d4d4; /* Toggle button off state border color */
|
|
2141
|
+
--toggleButton-border-off-hover: #a3a3a3; /* Toggle button off state hover border color */
|
|
2142
|
+
--toggleButton-border-on-default: #11162d; /* Toggle button on state border color */
|
|
2143
|
+
--toggleButton-border-on-hover: #11162d; /* Toggle button on state hover border color */
|
|
2144
|
+
--toggleButton-border-disabled: #e5e5e5; /* Toggle button disabled border color */
|
|
2145
|
+
--toggleButton-radius: 5px; /* Toggle button border radius */
|
|
2146
|
+
--toggleButton-fontSize-sm: 14px; /* Small toggle button font size */
|
|
2147
|
+
--toggleButton-fontSize-md: 16px; /* Medium toggle button font size */
|
|
2148
|
+
--toggleButton-fontSize-lg: 18px; /* Large toggle button font size */
|
|
2149
|
+
--toggleButton-iconSize-sm: 16px; /* Small toggle button icon size */
|
|
2150
|
+
--toggleButton-iconSize-md: 18px; /* Medium toggle button icon size */
|
|
2151
|
+
--toggleButton-iconSize-lg: 20px; /* Large toggle button icon size */
|
|
2152
|
+
--toggleButton-fontWeight: 500; /* Toggle button font weight */
|
|
2153
|
+
--toggleButton-focus-ringColor: #f97316; /* Toggle button focus ring color */
|
|
2154
|
+
--toggleButton-focus-ringWidth: 2px; /* Toggle button focus ring width */
|
|
2155
|
+
--toggleButton-focus-ringOffset: 2px; /* Toggle button focus ring offset */
|
|
2156
|
+
--toggleButton-transition-duration: 150ms; /* Toggle button transition duration */
|
|
2157
|
+
--toggleSwitch-width-sm: 36px;
|
|
2158
|
+
--toggleSwitch-width-md: 44px;
|
|
2159
|
+
--toggleSwitch-width-lg: 52px;
|
|
2160
|
+
--toggleSwitch-height-sm: 20px;
|
|
2161
|
+
--toggleSwitch-height-md: 24px;
|
|
2162
|
+
--toggleSwitch-height-lg: 28px;
|
|
2163
|
+
--toggleSwitch-thumb-size-sm: 16px;
|
|
2164
|
+
--toggleSwitch-thumb-size-md: 20px;
|
|
2165
|
+
--toggleSwitch-thumb-size-lg: 24px;
|
|
2166
|
+
--toggleSwitch-thumb-offset: 2px;
|
|
2167
|
+
--toggleSwitch-thumb-color-default: #ffffff;
|
|
2168
|
+
--toggleSwitch-thumb-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
2169
|
+
--toggleSwitch-track-background-off: rgba(255, 255, 255, 0.15); /* Off state - semi-transparent for dark backgrounds */
|
|
2170
|
+
--toggleSwitch-track-background-on: #f97316; /* On state - visible accent color */
|
|
2171
|
+
--toggleSwitch-track-background-disabled: rgba(255, 255, 255, 0.08); /* Disabled state - subtle semi-transparent */
|
|
2172
|
+
--toggleSwitch-focus-ringWidth: 2px;
|
|
2173
|
+
--toggleSwitch-focus-ringColor: #f97316;
|
|
2174
|
+
--toggleSwitch-focus-ringOffset: 2px;
|
|
2175
|
+
--toolbar-background: #11162d; /* Toolbar background color */
|
|
2176
|
+
--toolbar-border-color: #1a2244; /* Toolbar border color */
|
|
2177
|
+
--toolbar-border-width: 1px; /* Toolbar border width */
|
|
2178
|
+
--toolbar-radius: 5px; /* Toolbar border radius */
|
|
2179
|
+
--toolbar-padding: 16px; /* Toolbar inner padding */
|
|
2180
|
+
--toolbar-gap: 16px; /* Gap between toolbar items */
|
|
2181
|
+
--toolbar-minHeight: 48px; /* Minimum toolbar height */
|
|
2182
|
+
--tooltip-padding-x: 10px; /* Horizontal padding */
|
|
2183
|
+
--tooltip-padding-y: 6px; /* Vertical padding */
|
|
2184
|
+
--tooltip-background: #ffffff; /* Tooltip background color (dark) */
|
|
2185
|
+
--tooltip-text-color: #0a0e1f; /* Tooltip text color (light on dark) */
|
|
2186
|
+
--tooltip-text-fontSize: 13px; /* Tooltip font size */
|
|
2187
|
+
--tooltip-radius: 2px; /* Border radius */
|
|
2188
|
+
--tooltip-arrow-size: 6px; /* Arrow/pointer size */
|
|
2189
|
+
--tooltip-offset: 8px; /* Distance from trigger element */
|
|
2190
|
+
--tooltip-maxWidth: 250px; /* Maximum width before wrapping */
|
|
2191
|
+
--tooltip-zIndex: 1100; /* Z-index for stacking */
|
|
2192
|
+
--tree-select-height-sm: 32px;
|
|
2193
|
+
--tree-select-height-md: 40px;
|
|
2194
|
+
--tree-select-height-lg: 48px;
|
|
2195
|
+
--tree-select-padding-x: 16px;
|
|
2196
|
+
--tree-select-padding-y: 10px;
|
|
2197
|
+
--tree-select-fontSize-sm: 14px;
|
|
2198
|
+
--tree-select-fontSize-md: 15px;
|
|
2199
|
+
--tree-select-fontSize-lg: 16px;
|
|
2200
|
+
--tree-select-radius: 5px;
|
|
2201
|
+
--tree-select-border-width: 1px;
|
|
2202
|
+
--tree-select-border-color-default: #d4d4d4;
|
|
2203
|
+
--tree-select-border-color-hover: #a3a3a3;
|
|
2204
|
+
--tree-select-border-color-focus: #11162d;
|
|
2205
|
+
--tree-select-border-color-disabled: #e5e5e5;
|
|
2206
|
+
--tree-select-border-color-error: #ef4444;
|
|
2207
|
+
--tree-select-background-default: #0a0e1f;
|
|
2208
|
+
--tree-select-background-disabled: #f5f5f5;
|
|
2209
|
+
--tree-select-background-hover: #0a0e1f;
|
|
2210
|
+
--tree-select-text-default: #ffffff;
|
|
2211
|
+
--tree-select-text-placeholder: #7680a9;
|
|
2212
|
+
--tree-select-text-disabled: #7680a9;
|
|
2213
|
+
--tree-select-icon-size: 16px;
|
|
2214
|
+
--tree-select-icon-color-default: #737373;
|
|
2215
|
+
--tree-select-icon-color-disabled: #d4d4d4;
|
|
2216
|
+
--tree-select-dropdown-background: #0a0e1f;
|
|
2217
|
+
--tree-select-dropdown-border: #e5e5e5;
|
|
2218
|
+
--tree-select-dropdown-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
|
|
2219
|
+
--tree-select-dropdown-radius: 5px;
|
|
2220
|
+
--tree-select-dropdown-maxHeight: 320px;
|
|
2221
|
+
--tree-select-node-padding-x: 16px;
|
|
2222
|
+
--tree-select-node-padding-y: 10px;
|
|
2223
|
+
--tree-select-node-gap: 10px;
|
|
2224
|
+
--tree-select-node-indent: 26px;
|
|
2225
|
+
--tree-select-node-background-default: transparent;
|
|
2226
|
+
--tree-select-node-background-hover: #f5f5f5;
|
|
2227
|
+
--tree-select-node-background-selected: #11162d;
|
|
2228
|
+
--tree-select-node-text-default: #ffffff;
|
|
2229
|
+
--tree-select-node-text-selected: #ffffff;
|
|
2230
|
+
--tree-select-toggler-size: 20px;
|
|
2231
|
+
--tree-select-toggler-color-default: #737373;
|
|
2232
|
+
--tree-select-toggler-color-hover: #404040;
|
|
2233
|
+
--tree-select-filter-padding: 10px;
|
|
2234
|
+
--tree-select-filter-borderColor: #e5e5e5;
|
|
2235
|
+
--tree-select-focus-ringWidth: 2px;
|
|
2236
|
+
--tree-select-focus-ringColor: #11162d;
|
|
2237
|
+
--tree-select-focus-ringOffset: 1px;
|
|
2238
|
+
--tree-padding: 10px; /* Container padding */
|
|
2239
|
+
--tree-radius: 5px; /* Container border radius */
|
|
2240
|
+
--tree-border-width: 1px;
|
|
2241
|
+
--tree-border-color-default: #d4d4d4; /* Default border color */
|
|
2242
|
+
--tree-border-color-disabled: #e5e5e5; /* Disabled border color */
|
|
2243
|
+
--tree-background-default: #0a0e1f; /* Default background */
|
|
2244
|
+
--tree-background-disabled: #f5f5f5; /* Disabled background */
|
|
2245
|
+
--tree-maxHeight: 400px; /* Maximum height before scrolling */
|
|
2246
|
+
--tree-node-padding-x: 16px;
|
|
2247
|
+
--tree-node-padding-y: 10px;
|
|
2248
|
+
--tree-node-gap: 10px;
|
|
2249
|
+
--tree-node-indent: 26px;
|
|
2250
|
+
--tree-node-radius: 2px;
|
|
2251
|
+
--tree-node-background-default: transparent;
|
|
2252
|
+
--tree-node-background-hover: #f5f5f5;
|
|
2253
|
+
--tree-node-background-selected: #11162d;
|
|
2254
|
+
--tree-node-text-default: #ffffff;
|
|
2255
|
+
--tree-node-text-selected: #ffffff;
|
|
2256
|
+
--tree-toggler-size: 20px;
|
|
2257
|
+
--tree-toggler-color-default: #737373;
|
|
2258
|
+
--tree-toggler-color-hover: #404040;
|
|
2259
|
+
--tree-checkbox-size: 18px;
|
|
2260
|
+
--tree-checkbox-border: #d4d4d4;
|
|
2261
|
+
--tree-checkbox-background-checked: #11162d;
|
|
2262
|
+
--tree-filter-padding: 10px;
|
|
2263
|
+
--tree-filter-marginBottom: 10px;
|
|
2264
|
+
--tree-focus-ringWidth: 2px;
|
|
2265
|
+
--tree-focus-ringColor: #11162d;
|
|
2266
|
+
--tree-focus-ringOffset: 1px;
|
|
2267
|
+
--treetable-radius: 5px; /* Container border radius */
|
|
2268
|
+
--treetable-border-width: 1px;
|
|
2269
|
+
--treetable-border-color-default: #d4d4d4;
|
|
2270
|
+
--treetable-background-default: #0a0e1f;
|
|
2271
|
+
--treetable-header-padding-x: 16px;
|
|
2272
|
+
--treetable-header-padding-y: 10px;
|
|
2273
|
+
--treetable-header-background: #fafafa;
|
|
2274
|
+
--treetable-header-text: #ffffff;
|
|
2275
|
+
--treetable-header-fontWeight: 600;
|
|
2276
|
+
--treetable-header-borderColor: #e5e5e5;
|
|
2277
|
+
--treetable-row-padding-x: 16px;
|
|
2278
|
+
--treetable-row-padding-y: 10px;
|
|
2279
|
+
--treetable-row-background-default: #0a0e1f;
|
|
2280
|
+
--treetable-row-background-hover: #fafafa;
|
|
2281
|
+
--treetable-row-background-selected: #11162d;
|
|
2282
|
+
--treetable-row-background-stripe: #060813;
|
|
2283
|
+
--treetable-row-text-default: #ffffff;
|
|
2284
|
+
--treetable-row-text-selected: #ffffff;
|
|
2285
|
+
--treetable-row-borderColor: #e5e5e5;
|
|
2286
|
+
--treetable-cell-padding-x: 16px;
|
|
2287
|
+
--treetable-cell-padding-y: 10px;
|
|
2288
|
+
--treetable-toggler-size: 20px;
|
|
2289
|
+
--treetable-toggler-color-default: #737373;
|
|
2290
|
+
--treetable-toggler-color-hover: #404040;
|
|
2291
|
+
--treetable-toggler-marginRight: 10px;
|
|
2292
|
+
--treetable-indent: 26px;
|
|
2293
|
+
--treetable-checkbox-size: 18px;
|
|
2294
|
+
--treetable-checkbox-marginRight: 10px;
|
|
2295
|
+
--treetable-focus-ringWidth: 2px;
|
|
2296
|
+
--treetable-focus-ringColor: #11162d;
|
|
2297
|
+
--virtualscroller-background-default: #0a0e1f; /* Default background */
|
|
2298
|
+
--virtualscroller-border-width: 1px;
|
|
2299
|
+
--virtualscroller-border-color-default: #d4d4d4;
|
|
2300
|
+
--virtualscroller-border-radius: 5px;
|
|
2301
|
+
--virtualscroller-item-padding-x: 16px;
|
|
2302
|
+
--virtualscroller-item-padding-y: 10px;
|
|
2303
|
+
--virtualscroller-item-background-default: transparent;
|
|
2304
|
+
--virtualscroller-item-background-hover: #f5f5f5;
|
|
2305
|
+
--virtualscroller-item-background-stripe: #060813;
|
|
2306
|
+
--virtualscroller-item-text-default: #ffffff;
|
|
2307
|
+
--virtualscroller-item-borderColor: #e5e5e5;
|
|
2308
|
+
--virtualscroller-loader-padding: 16px;
|
|
2309
|
+
--virtualscroller-loader-text: #7680a9;
|
|
2310
|
+
--virtualscroller-loader-background: #fafafa;
|
|
2311
|
+
--virtualscroller-scrollbar-width: 8px;
|
|
2312
|
+
--virtualscroller-scrollbar-track: #f5f5f5;
|
|
2313
|
+
--virtualscroller-scrollbar-thumb: #d4d4d4;
|
|
2314
|
+
--virtualscroller-scrollbar-thumbHover: #a3a3a3;
|
|
2315
|
+
}
|