@noxlovette/material 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/clickOutside.d.ts +3 -0
- package/dist/actions/clickOutside.js +13 -0
- package/dist/actions/floating.d.ts +20 -0
- package/dist/actions/floating.js +87 -0
- package/dist/actions/index.d.ts +4 -0
- package/dist/actions/index.js +4 -0
- package/dist/actions/keyboard.d.ts +3 -0
- package/dist/actions/keyboard.js +14 -0
- package/dist/actions/positionFloating.d.ts +10 -0
- package/dist/actions/positionFloating.js +59 -0
- package/dist/animation/containerTransform.d.ts +13 -0
- package/dist/animation/containerTransform.js +138 -0
- package/dist/animation/easing.d.ts +6 -0
- package/dist/animation/easing.js +78 -0
- package/dist/animation/enterExit.d.ts +3 -0
- package/dist/animation/enterExit.js +23 -0
- package/dist/animation/index.d.ts +5 -0
- package/dist/animation/index.js +5 -0
- package/dist/animation/outroClass.d.ts +3 -0
- package/dist/animation/outroClass.js +20 -0
- package/dist/animation/shapes.d.ts +35 -0
- package/dist/animation/shapes.js +37 -0
- package/dist/animation/shapesAnimatable.d.ts +35 -0
- package/dist/animation/shapesAnimatable.js +41 -0
- package/dist/animation/shapesAnimatableSmall.d.ts +29 -0
- package/dist/animation/shapesAnimatableSmall.js +33 -0
- package/dist/animation/sharedAxisTransition.d.ts +38 -0
- package/dist/animation/sharedAxisTransition.js +23 -0
- package/dist/animation/transition.d.ts +4 -0
- package/dist/animation/transition.js +4 -0
- package/dist/animation/transitionTypes.d.ts +8 -0
- package/dist/animation/transitionTypes.js +1 -0
- package/dist/components/badge/Badge.svelte +26 -0
- package/dist/components/badge/Badge.svelte.d.ts +12 -0
- package/dist/components/badge/index.d.ts +3 -0
- package/dist/components/badge/index.js +6 -0
- package/dist/components/badge/theme.d.ts +16 -0
- package/dist/components/badge/theme.js +10 -0
- package/dist/components/badge/types.d.ts +18 -0
- package/dist/components/badge/types.js +1 -0
- package/dist/components/buttons/Button.svelte +53 -0
- package/dist/components/buttons/Button.svelte.d.ts +16 -0
- package/dist/components/buttons/ButtonIcon.svelte +79 -0
- package/dist/components/buttons/ButtonIcon.svelte.d.ts +14 -0
- package/dist/components/buttons/FAB.svelte +81 -0
- package/dist/components/buttons/FAB.svelte.d.ts +14 -0
- package/dist/components/buttons/FABMenu.svelte +86 -0
- package/dist/components/buttons/FABMenu.svelte.d.ts +8 -0
- package/dist/components/buttons/FABMenuItem.svelte +38 -0
- package/dist/components/buttons/FABMenuItem.svelte.d.ts +5 -0
- package/dist/components/buttons/Toggle.svelte +62 -0
- package/dist/components/buttons/Toggle.svelte.d.ts +11 -0
- package/dist/components/buttons/connected/ConnectedButtons.svelte +14 -0
- package/dist/components/buttons/connected/ConnectedButtons.svelte.d.ts +8 -0
- package/dist/components/buttons/connected/index.d.ts +2 -0
- package/dist/components/buttons/connected/index.js +5 -0
- package/dist/components/buttons/connected/types.d.ts +14 -0
- package/dist/components/buttons/connected/types.js +1 -0
- package/dist/components/buttons/index.d.ts +9 -0
- package/dist/components/buttons/index.js +13 -0
- package/dist/components/buttons/theme.d.ts +539 -0
- package/dist/components/buttons/theme.js +495 -0
- package/dist/components/buttons/types.d.ts +201 -0
- package/dist/components/buttons/types.js +1 -0
- package/dist/components/cards/Card.svelte +39 -0
- package/dist/components/cards/Card.svelte.d.ts +13 -0
- package/dist/components/cards/index.d.ts +3 -0
- package/dist/components/cards/index.js +6 -0
- package/dist/components/cards/theme.d.ts +37 -0
- package/dist/components/cards/theme.js +34 -0
- package/dist/components/cards/types.d.ts +31 -0
- package/dist/components/cards/types.js +1 -0
- package/dist/components/containers/app/App.svelte +32 -0
- package/dist/components/containers/app/App.svelte.d.ts +8 -0
- package/dist/components/containers/app/index.d.ts +3 -0
- package/dist/components/containers/app/index.js +6 -0
- package/dist/components/containers/app/theme.d.ts +3 -0
- package/dist/components/containers/app/theme.js +4 -0
- package/dist/components/containers/app/types.d.ts +25 -0
- package/dist/components/containers/app/types.js +1 -0
- package/dist/components/containers/bottom-sheet/BottomSheet.svelte +125 -0
- package/dist/components/containers/bottom-sheet/BottomSheet.svelte.d.ts +12 -0
- package/dist/components/containers/bottom-sheet/index.d.ts +2 -0
- package/dist/components/containers/bottom-sheet/index.js +5 -0
- package/dist/components/containers/bottom-sheet/types.d.ts +16 -0
- package/dist/components/containers/bottom-sheet/types.js +1 -0
- package/dist/components/containers/context-menu/ContextMenu.svelte +152 -0
- package/dist/components/containers/context-menu/ContextMenu.svelte.d.ts +23 -0
- package/dist/components/containers/context-menu/index.d.ts +3 -0
- package/dist/components/containers/context-menu/index.js +6 -0
- package/dist/components/containers/context-menu/theme.d.ts +51 -0
- package/dist/components/containers/context-menu/theme.js +21 -0
- package/dist/components/containers/context-menu/types.d.ts +45 -0
- package/dist/components/containers/context-menu/types.js +1 -0
- package/dist/components/containers/dialogue/Dialogue.svelte +134 -0
- package/dist/components/containers/dialogue/Dialogue.svelte.d.ts +14 -0
- package/dist/components/containers/dialogue/index.d.ts +3 -0
- package/dist/components/containers/dialogue/index.js +6 -0
- package/dist/components/containers/dialogue/theme.d.ts +51 -0
- package/dist/components/containers/dialogue/theme.js +10 -0
- package/dist/components/containers/dialogue/types.d.ts +46 -0
- package/dist/components/containers/dialogue/types.js +1 -0
- package/dist/components/containers/divider/Divider.svelte +100 -0
- package/dist/components/containers/divider/Divider.svelte.d.ts +13 -0
- package/dist/components/containers/divider/index.d.ts +3 -0
- package/dist/components/containers/divider/index.js +6 -0
- package/dist/components/containers/divider/theme.d.ts +33 -0
- package/dist/components/containers/divider/theme.js +15 -0
- package/dist/components/containers/divider/types.d.ts +27 -0
- package/dist/components/containers/divider/types.js +1 -0
- package/dist/components/containers/index.d.ts +15 -0
- package/dist/components/containers/index.js +17 -0
- package/dist/components/containers/link-preview/LinkPreview.svelte +64 -0
- package/dist/components/containers/link-preview/LinkPreview.svelte.d.ts +10 -0
- package/dist/components/containers/link-preview/index.d.ts +3 -0
- package/dist/components/containers/link-preview/index.js +6 -0
- package/dist/components/containers/link-preview/theme.d.ts +33 -0
- package/dist/components/containers/link-preview/theme.js +7 -0
- package/dist/components/containers/link-preview/types.d.ts +22 -0
- package/dist/components/containers/link-preview/types.js +1 -0
- package/dist/components/containers/list/ListItem.svelte +79 -0
- package/dist/components/containers/list/ListItem.svelte.d.ts +4 -0
- package/dist/components/containers/list/index.d.ts +3 -0
- package/dist/components/containers/list/index.js +6 -0
- package/dist/components/containers/list/theme.d.ts +67 -0
- package/dist/components/containers/list/theme.js +27 -0
- package/dist/components/containers/list/types.d.ts +48 -0
- package/dist/components/containers/list/types.js +1 -0
- package/dist/components/containers/menu/Menu.svelte +70 -0
- package/dist/components/containers/menu/Menu.svelte.d.ts +20 -0
- package/dist/components/containers/menu/index.d.ts +2 -0
- package/dist/components/containers/menu/index.js +5 -0
- package/dist/components/containers/menu/types.d.ts +40 -0
- package/dist/components/containers/menu/types.js +1 -0
- package/dist/components/containers/menu-item/MenuItem.svelte +75 -0
- package/dist/components/containers/menu-item/MenuItem.svelte.d.ts +20 -0
- package/dist/components/containers/menu-item/index.d.ts +2 -0
- package/dist/components/containers/menu-item/index.js +5 -0
- package/dist/components/containers/menu-item/types.d.ts +36 -0
- package/dist/components/containers/menu-item/types.js +1 -0
- package/dist/components/containers/merger/InputMerger.svelte +29 -0
- package/dist/components/containers/merger/InputMerger.svelte.d.ts +14 -0
- package/dist/components/containers/merger/index.d.ts +1 -0
- package/dist/components/containers/merger/index.js +3 -0
- package/dist/components/containers/panes/SinglePane.svelte +29 -0
- package/dist/components/containers/panes/SinglePane.svelte.d.ts +5 -0
- package/dist/components/containers/panes/SplitPane.svelte +132 -0
- package/dist/components/containers/panes/SplitPane.svelte.d.ts +5 -0
- package/dist/components/containers/panes/SupportingPane.svelte +81 -0
- package/dist/components/containers/panes/SupportingPane.svelte.d.ts +9 -0
- package/dist/components/containers/panes/index.d.ts +5 -0
- package/dist/components/containers/panes/index.js +8 -0
- package/dist/components/containers/panes/theme.d.ts +331 -0
- package/dist/components/containers/panes/theme.js +152 -0
- package/dist/components/containers/panes/types.d.ts +81 -0
- package/dist/components/containers/panes/types.js +1 -0
- package/dist/components/containers/popover/Popover.svelte +82 -0
- package/dist/components/containers/popover/Popover.svelte.d.ts +10 -0
- package/dist/components/containers/popover/index.d.ts +3 -0
- package/dist/components/containers/popover/index.js +6 -0
- package/dist/components/containers/popover/theme.d.ts +51 -0
- package/dist/components/containers/popover/theme.js +10 -0
- package/dist/components/containers/popover/types.d.ts +22 -0
- package/dist/components/containers/popover/types.js +1 -0
- package/dist/components/containers/scroll-area/ScrollArea.svelte +41 -0
- package/dist/components/containers/scroll-area/ScrollArea.svelte.d.ts +5 -0
- package/dist/components/containers/scroll-area/index.d.ts +3 -0
- package/dist/components/containers/scroll-area/index.js +6 -0
- package/dist/components/containers/scroll-area/theme.d.ts +55 -0
- package/dist/components/containers/scroll-area/theme.js +26 -0
- package/dist/components/containers/scroll-area/types.d.ts +26 -0
- package/dist/components/containers/scroll-area/types.js +1 -0
- package/dist/components/containers/side-sheet/SideSheet.svelte +21 -0
- package/dist/components/containers/side-sheet/SideSheet.svelte.d.ts +9 -0
- package/dist/components/containers/side-sheet/index.d.ts +2 -0
- package/dist/components/containers/side-sheet/index.js +5 -0
- package/dist/components/containers/side-sheet/types.d.ts +18 -0
- package/dist/components/containers/side-sheet/types.js +1 -0
- package/dist/components/containers/stack/HStack.svelte +23 -0
- package/dist/components/containers/stack/HStack.svelte.d.ts +5 -0
- package/dist/components/containers/stack/VStack.svelte +23 -0
- package/dist/components/containers/stack/VStack.svelte.d.ts +5 -0
- package/dist/components/containers/stack/index.d.ts +4 -0
- package/dist/components/containers/stack/index.js +7 -0
- package/dist/components/containers/stack/theme.d.ts +60 -0
- package/dist/components/containers/stack/theme.js +24 -0
- package/dist/components/containers/stack/types.d.ts +12 -0
- package/dist/components/containers/stack/types.js +1 -0
- package/dist/components/date/DateField.svelte +155 -0
- package/dist/components/date/DateField.svelte.d.ts +12 -0
- package/dist/components/date/DateRangeField.svelte +211 -0
- package/dist/components/date/DateRangeField.svelte.d.ts +13 -0
- package/dist/components/date/index.d.ts +4 -0
- package/dist/components/date/index.js +7 -0
- package/dist/components/date/theme.d.ts +158 -0
- package/dist/components/date/theme.js +149 -0
- package/dist/components/date/types.d.ts +64 -0
- package/dist/components/date/types.js +1 -0
- package/dist/components/forms/checkbox/Checkbox.svelte +66 -0
- package/dist/components/forms/checkbox/Checkbox.svelte.d.ts +10 -0
- package/dist/components/forms/checkbox/index.d.ts +3 -0
- package/dist/components/forms/checkbox/index.js +6 -0
- package/dist/components/forms/checkbox/theme.d.ts +141 -0
- package/dist/components/forms/checkbox/theme.js +69 -0
- package/dist/components/forms/checkbox/types.d.ts +39 -0
- package/dist/components/forms/checkbox/types.js +1 -0
- package/dist/components/forms/command/Command.svelte +14 -0
- package/dist/components/forms/command/Command.svelte.d.ts +5 -0
- package/dist/components/forms/command/CommandEmpty.svelte +14 -0
- package/dist/components/forms/command/CommandEmpty.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandGroup.svelte +17 -0
- package/dist/components/forms/command/CommandGroup.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandInput.svelte +18 -0
- package/dist/components/forms/command/CommandInput.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandItem.svelte +14 -0
- package/dist/components/forms/command/CommandItem.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandList.svelte +14 -0
- package/dist/components/forms/command/CommandList.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandSeparator.svelte +12 -0
- package/dist/components/forms/command/CommandSeparator.svelte.d.ts +4 -0
- package/dist/components/forms/command/index.d.ts +9 -0
- package/dist/components/forms/command/index.js +12 -0
- package/dist/components/forms/command/theme.d.ts +81 -0
- package/dist/components/forms/command/theme.js +15 -0
- package/dist/components/forms/command/types.d.ts +31 -0
- package/dist/components/forms/command/types.js +1 -0
- package/dist/components/forms/index.d.ts +12 -0
- package/dist/components/forms/index.js +14 -0
- package/dist/components/forms/multipart/Multipart.svelte +532 -0
- package/dist/components/forms/multipart/Multipart.svelte.d.ts +51 -0
- package/dist/components/forms/multipart/index.d.ts +1 -0
- package/dist/components/forms/multipart/index.js +3 -0
- package/dist/components/forms/pin/PinInput.svelte +51 -0
- package/dist/components/forms/pin/PinInput.svelte.d.ts +10 -0
- package/dist/components/forms/pin/index.d.ts +3 -0
- package/dist/components/forms/pin/index.js +6 -0
- package/dist/components/forms/pin/theme.d.ts +60 -0
- package/dist/components/forms/pin/theme.js +33 -0
- package/dist/components/forms/pin/types.d.ts +29 -0
- package/dist/components/forms/pin/types.js +1 -0
- package/dist/components/forms/radio-group/RadioGroup.svelte +61 -0
- package/dist/components/forms/radio-group/RadioGroup.svelte.d.ts +10 -0
- package/dist/components/forms/radio-group/index.d.ts +3 -0
- package/dist/components/forms/radio-group/index.js +6 -0
- package/dist/components/forms/radio-group/theme.d.ts +132 -0
- package/dist/components/forms/radio-group/theme.js +48 -0
- package/dist/components/forms/radio-group/types.d.ts +24 -0
- package/dist/components/forms/radio-group/types.js +1 -0
- package/dist/components/forms/search/Search.svelte +52 -0
- package/dist/components/forms/search/Search.svelte.d.ts +11 -0
- package/dist/components/forms/search/index.d.ts +3 -0
- package/dist/components/forms/search/index.js +6 -0
- package/dist/components/forms/search/theme.d.ts +33 -0
- package/dist/components/forms/search/theme.js +15 -0
- package/dist/components/forms/search/types.d.ts +34 -0
- package/dist/components/forms/search/types.js +1 -0
- package/dist/components/forms/select/Select.svelte +141 -0
- package/dist/components/forms/select/Select.svelte.d.ts +13 -0
- package/dist/components/forms/select/SelectGroup.svelte +19 -0
- package/dist/components/forms/select/SelectGroup.svelte.d.ts +8 -0
- package/dist/components/forms/select/SelectItem.svelte +35 -0
- package/dist/components/forms/select/SelectItem.svelte.d.ts +14 -0
- package/dist/components/forms/select/SelectLabel.svelte +19 -0
- package/dist/components/forms/select/SelectLabel.svelte.d.ts +8 -0
- package/dist/components/forms/select/SelectSeparator.svelte +13 -0
- package/dist/components/forms/select/SelectSeparator.svelte.d.ts +6 -0
- package/dist/components/forms/select/index.d.ts +7 -0
- package/dist/components/forms/select/index.js +10 -0
- package/dist/components/forms/select/theme.d.ts +84 -0
- package/dist/components/forms/select/theme.js +87 -0
- package/dist/components/forms/select/types.d.ts +63 -0
- package/dist/components/forms/select/types.js +1 -0
- package/dist/components/forms/slider/Slider.svelte +201 -0
- package/dist/components/forms/slider/Slider.svelte.d.ts +12 -0
- package/dist/components/forms/slider/index.d.ts +3 -0
- package/dist/components/forms/slider/index.js +6 -0
- package/dist/components/forms/slider/theme.d.ts +78 -0
- package/dist/components/forms/slider/theme.js +33 -0
- package/dist/components/forms/slider/types.d.ts +56 -0
- package/dist/components/forms/slider/types.js +1 -0
- package/dist/components/forms/switch/Switch.svelte +74 -0
- package/dist/components/forms/switch/Switch.svelte.d.ts +12 -0
- package/dist/components/forms/switch/index.d.ts +3 -0
- package/dist/components/forms/switch/index.js +6 -0
- package/dist/components/forms/switch/theme.d.ts +51 -0
- package/dist/components/forms/switch/theme.js +71 -0
- package/dist/components/forms/switch/types.d.ts +25 -0
- package/dist/components/forms/switch/types.js +1 -0
- package/dist/components/forms/textfield/Textfield.svelte +82 -0
- package/dist/components/forms/textfield/Textfield.svelte.d.ts +11 -0
- package/dist/components/forms/textfield/index.d.ts +3 -0
- package/dist/components/forms/textfield/index.js +6 -0
- package/dist/components/forms/textfield/theme.d.ts +75 -0
- package/dist/components/forms/textfield/theme.js +74 -0
- package/dist/components/forms/textfield/types.d.ts +60 -0
- package/dist/components/forms/textfield/types.js +1 -0
- package/dist/components/forms/toggle-group/ToggleGroup.svelte +38 -0
- package/dist/components/forms/toggle-group/ToggleGroup.svelte.d.ts +11 -0
- package/dist/components/forms/toggle-group/ToggleGroupItem.svelte +36 -0
- package/dist/components/forms/toggle-group/ToggleGroupItem.svelte.d.ts +8 -0
- package/dist/components/forms/toggle-group/index.d.ts +4 -0
- package/dist/components/forms/toggle-group/index.js +7 -0
- package/dist/components/forms/toggle-group/theme.d.ts +74 -0
- package/dist/components/forms/toggle-group/theme.js +20 -0
- package/dist/components/forms/toggle-group/types.d.ts +25 -0
- package/dist/components/forms/toggle-group/types.js +1 -0
- package/dist/components/forms/tooltip/Tooltip.svelte +104 -0
- package/dist/components/forms/tooltip/Tooltip.svelte.d.ts +11 -0
- package/dist/components/forms/tooltip/index.d.ts +3 -0
- package/dist/components/forms/tooltip/index.js +6 -0
- package/dist/components/forms/tooltip/theme.d.ts +105 -0
- package/dist/components/forms/tooltip/theme.js +52 -0
- package/dist/components/forms/tooltip/types.d.ts +29 -0
- package/dist/components/forms/tooltip/types.js +1 -0
- package/dist/components/index.d.ts +15 -0
- package/dist/components/index.js +17 -0
- package/dist/components/misc/Avatar.svelte +70 -0
- package/dist/components/misc/Avatar.svelte.d.ts +9 -0
- package/dist/components/misc/ThemeSettings.svelte +88 -0
- package/dist/components/misc/ThemeSettings.svelte.d.ts +18 -0
- package/dist/components/misc/ThemeSwitcher.svelte +21 -0
- package/dist/components/misc/ThemeSwitcher.svelte.d.ts +3 -0
- package/dist/components/misc/index.d.ts +5 -0
- package/dist/components/misc/index.js +8 -0
- package/dist/components/misc/theme.d.ts +52 -0
- package/dist/components/misc/theme.js +25 -0
- package/dist/components/misc/types.d.ts +18 -0
- package/dist/components/misc/types.js +1 -0
- package/dist/components/nav/appbar/AppBar.svelte +60 -0
- package/dist/components/nav/appbar/AppBar.svelte.d.ts +12 -0
- package/dist/components/nav/appbar/index.d.ts +3 -0
- package/dist/components/nav/appbar/index.js +6 -0
- package/dist/components/nav/appbar/theme.d.ts +99 -0
- package/dist/components/nav/appbar/theme.js +33 -0
- package/dist/components/nav/appbar/types.d.ts +20 -0
- package/dist/components/nav/appbar/types.js +1 -0
- package/dist/components/nav/index.d.ts +5 -0
- package/dist/components/nav/index.js +8 -0
- package/dist/components/nav/navbar/Navbar.svelte +33 -0
- package/dist/components/nav/navbar/Navbar.svelte.d.ts +18 -0
- package/dist/components/nav/navbar/NavbarItem.svelte +66 -0
- package/dist/components/nav/navbar/NavbarItem.svelte.d.ts +9 -0
- package/dist/components/nav/navbar/index.d.ts +4 -0
- package/dist/components/nav/navbar/index.js +7 -0
- package/dist/components/nav/navbar/theme.d.ts +95 -0
- package/dist/components/nav/navbar/theme.js +31 -0
- package/dist/components/nav/navbar/types.d.ts +29 -0
- package/dist/components/nav/navbar/types.js +1 -0
- package/dist/components/nav/rail/Rail.svelte +75 -0
- package/dist/components/nav/rail/Rail.svelte.d.ts +11 -0
- package/dist/components/nav/rail/RailItem.svelte +104 -0
- package/dist/components/nav/rail/RailItem.svelte.d.ts +9 -0
- package/dist/components/nav/rail/index.d.ts +4 -0
- package/dist/components/nav/rail/index.js +7 -0
- package/dist/components/nav/rail/theme.d.ts +218 -0
- package/dist/components/nav/rail/theme.js +107 -0
- package/dist/components/nav/rail/types.d.ts +44 -0
- package/dist/components/nav/rail/types.js +1 -0
- package/dist/components/nav/tabs/Tab.svelte +49 -0
- package/dist/components/nav/tabs/Tab.svelte.d.ts +9 -0
- package/dist/components/nav/tabs/TabContent.svelte +11 -0
- package/dist/components/nav/tabs/TabContent.svelte.d.ts +8 -0
- package/dist/components/nav/tabs/TabHolder.svelte +44 -0
- package/dist/components/nav/tabs/TabHolder.svelte.d.ts +16 -0
- package/dist/components/nav/tabs/index.d.ts +5 -0
- package/dist/components/nav/tabs/index.js +8 -0
- package/dist/components/nav/tabs/theme.d.ts +92 -0
- package/dist/components/nav/tabs/theme.js +37 -0
- package/dist/components/nav/tabs/types.d.ts +39 -0
- package/dist/components/nav/tabs/types.js +1 -0
- package/dist/components/nav/types.d.ts +6 -0
- package/dist/components/nav/types.js +1 -0
- package/dist/components/pill/Pill.svelte +17 -0
- package/dist/components/pill/Pill.svelte.d.ts +5 -0
- package/dist/components/pill/index.d.ts +3 -0
- package/dist/components/pill/index.js +6 -0
- package/dist/components/pill/theme.d.ts +27 -0
- package/dist/components/pill/theme.js +16 -0
- package/dist/components/pill/types.d.ts +6 -0
- package/dist/components/pill/types.js +1 -0
- package/dist/components/progress/CircularProgress.svelte +58 -0
- package/dist/components/progress/CircularProgress.svelte.d.ts +16 -0
- package/dist/components/progress/LinearProgress.svelte +45 -0
- package/dist/components/progress/LinearProgress.svelte.d.ts +15 -0
- package/dist/components/progress/WavyLinearProgress.svelte +58 -0
- package/dist/components/progress/WavyLinearProgress.svelte.d.ts +19 -0
- package/dist/components/progress/_wavy.d.ts +2 -0
- package/dist/components/progress/_wavy.js +32 -0
- package/dist/components/progress/index.d.ts +4 -0
- package/dist/components/progress/index.js +7 -0
- package/dist/components/snackbar/Snackbar.svelte +102 -0
- package/dist/components/snackbar/Snackbar.svelte.d.ts +9 -0
- package/dist/components/snackbar/index.d.ts +3 -0
- package/dist/components/snackbar/index.js +6 -0
- package/dist/components/snackbar/theme.d.ts +36 -0
- package/dist/components/snackbar/theme.js +16 -0
- package/dist/components/snackbar/types.d.ts +33 -0
- package/dist/components/snackbar/types.js +1 -0
- package/dist/components/table/Table.svelte +26 -0
- package/dist/components/table/Table.svelte.d.ts +8 -0
- package/dist/components/table/TableBody.svelte +17 -0
- package/dist/components/table/TableBody.svelte.d.ts +5 -0
- package/dist/components/table/TableCell.svelte +24 -0
- package/dist/components/table/TableCell.svelte.d.ts +8 -0
- package/dist/components/table/TableFoot.svelte +17 -0
- package/dist/components/table/TableFoot.svelte.d.ts +5 -0
- package/dist/components/table/TableHead.svelte +18 -0
- package/dist/components/table/TableHead.svelte.d.ts +8 -0
- package/dist/components/table/TableHeader.svelte +43 -0
- package/dist/components/table/TableHeader.svelte.d.ts +8 -0
- package/dist/components/table/TableRow.svelte +24 -0
- package/dist/components/table/TableRow.svelte.d.ts +8 -0
- package/dist/components/table/index.d.ts +9 -0
- package/dist/components/table/index.js +12 -0
- package/dist/components/table/theme.d.ts +165 -0
- package/dist/components/table/theme.js +50 -0
- package/dist/components/table/types.d.ts +44 -0
- package/dist/components/table/types.js +1 -0
- package/dist/components/time/TimeField.svelte +111 -0
- package/dist/components/time/TimeField.svelte.d.ts +28 -0
- package/dist/components/time/TimepickerInput.svelte +75 -0
- package/dist/components/time/TimepickerInput.svelte.d.ts +10 -0
- package/dist/components/time/index.d.ts +4 -0
- package/dist/components/time/index.js +7 -0
- package/dist/components/time/theme.d.ts +69 -0
- package/dist/components/time/theme.js +13 -0
- package/dist/components/time/types.d.ts +34 -0
- package/dist/components/time/types.js +1 -0
- package/dist/components/toolbar/Toolbar.svelte +26 -0
- package/dist/components/toolbar/Toolbar.svelte.d.ts +10 -0
- package/dist/components/toolbar/ToolbarButton.svelte +25 -0
- package/dist/components/toolbar/ToolbarButton.svelte.d.ts +5 -0
- package/dist/components/toolbar/ToolbarDivider.svelte +6 -0
- package/dist/components/toolbar/ToolbarDivider.svelte.d.ts +18 -0
- package/dist/components/toolbar/ToolbarGroup.svelte +18 -0
- package/dist/components/toolbar/ToolbarGroup.svelte.d.ts +5 -0
- package/dist/components/toolbar/ToolbarGroupItem.svelte +27 -0
- package/dist/components/toolbar/ToolbarGroupItem.svelte.d.ts +8 -0
- package/dist/components/toolbar/index.d.ts +7 -0
- package/dist/components/toolbar/index.js +10 -0
- package/dist/components/toolbar/theme.d.ts +106 -0
- package/dist/components/toolbar/theme.js +27 -0
- package/dist/components/toolbar/types.d.ts +20 -0
- package/dist/components/toolbar/types.js +1 -0
- package/dist/components/typography/body/Body.svelte +33 -0
- package/dist/components/typography/body/Body.svelte.d.ts +10 -0
- package/dist/components/typography/body/index.d.ts +3 -0
- package/dist/components/typography/body/index.js +6 -0
- package/dist/components/typography/body/theme.d.ts +30 -0
- package/dist/components/typography/body/theme.js +14 -0
- package/dist/components/typography/body/types.d.ts +21 -0
- package/dist/components/typography/body/types.js +1 -0
- package/dist/components/typography/display/Display.svelte +27 -0
- package/dist/components/typography/display/Display.svelte.d.ts +10 -0
- package/dist/components/typography/display/index.d.ts +3 -0
- package/dist/components/typography/display/index.js +6 -0
- package/dist/components/typography/display/theme.d.ts +30 -0
- package/dist/components/typography/display/theme.js +14 -0
- package/dist/components/typography/display/types.d.ts +21 -0
- package/dist/components/typography/display/types.js +1 -0
- package/dist/components/typography/headline/Headline.svelte +27 -0
- package/dist/components/typography/headline/Headline.svelte.d.ts +10 -0
- package/dist/components/typography/headline/index.d.ts +3 -0
- package/dist/components/typography/headline/index.js +6 -0
- package/dist/components/typography/headline/theme.d.ts +30 -0
- package/dist/components/typography/headline/theme.js +14 -0
- package/dist/components/typography/headline/types.d.ts +21 -0
- package/dist/components/typography/headline/types.js +1 -0
- package/dist/components/typography/index.d.ts +6 -0
- package/dist/components/typography/index.js +8 -0
- package/dist/components/typography/kbd/Kbd.svelte +18 -0
- package/dist/components/typography/kbd/Kbd.svelte.d.ts +5 -0
- package/dist/components/typography/kbd/index.d.ts +3 -0
- package/dist/components/typography/kbd/index.js +6 -0
- package/dist/components/typography/kbd/theme.d.ts +18 -0
- package/dist/components/typography/kbd/theme.js +10 -0
- package/dist/components/typography/kbd/types.d.ts +17 -0
- package/dist/components/typography/kbd/types.js +1 -0
- package/dist/components/typography/label/Label.svelte +25 -0
- package/dist/components/typography/label/Label.svelte.d.ts +10 -0
- package/dist/components/typography/label/index.d.ts +3 -0
- package/dist/components/typography/label/index.js +6 -0
- package/dist/components/typography/label/theme.d.ts +28 -0
- package/dist/components/typography/label/theme.js +14 -0
- package/dist/components/typography/label/types.d.ts +23 -0
- package/dist/components/typography/label/types.js +1 -0
- package/dist/components/typography/title/Title.svelte +27 -0
- package/dist/components/typography/title/Title.svelte.d.ts +10 -0
- package/dist/components/typography/title/index.d.ts +3 -0
- package/dist/components/typography/title/index.js +6 -0
- package/dist/components/typography/title/theme.d.ts +30 -0
- package/dist/components/typography/title/theme.js +14 -0
- package/dist/components/typography/title/types.d.ts +21 -0
- package/dist/components/typography/title/types.js +1 -0
- package/dist/index.css +6 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/styles/component.css +154 -0
- package/dist/styles/elevation.css +45 -0
- package/dist/styles/motion.css +51 -0
- package/dist/styles/prose.css +48 -0
- package/dist/styles/rounding.css +11 -0
- package/dist/styles/theme/dark-hc.css +53 -0
- package/dist/styles/theme/dark-mc.css +53 -0
- package/dist/styles/theme/dark.css +51 -0
- package/dist/styles/theme/light-hc.css +53 -0
- package/dist/styles/theme/light-mc.css +53 -0
- package/dist/styles/theme/light.css +51 -0
- package/dist/styles/typescale.css +63 -0
- package/dist/utils/Layer.svelte +217 -0
- package/dist/utils/Layer.svelte.d.ts +3 -0
- package/dist/utils/Theme.svelte +90 -0
- package/dist/utils/icon/Icon.svelte +24 -0
- package/dist/utils/icon/Icon.svelte.d.ts +4 -0
- package/dist/utils/icon/LoadingIndicator.svelte +39 -0
- package/dist/utils/icon/LoadingIndicator.svelte.d.ts +4 -0
- package/dist/utils/icon/MaterialSymbolsProvider.svelte +38 -0
- package/dist/utils/icon/MaterialSymbolsProvider.svelte.d.ts +8 -0
- package/dist/utils/icon/base-icons.d.ts +1 -0
- package/dist/utils/icon/base-icons.js +29 -0
- package/dist/utils/icon/index.d.ts +6 -0
- package/dist/utils/icon/index.js +6 -0
- package/dist/utils/icon/theme.d.ts +30 -0
- package/dist/utils/icon/theme.js +14 -0
- package/dist/utils/icon/types.d.ts +23 -0
- package/dist/utils/icon/types.js +1 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/index.js +6 -0
- package/dist/utils/theme.svelte.d.ts +24 -0
- package/dist/utils/theme.svelte.js +156 -0
- package/dist/utils/tutorial.d.ts +9 -0
- package/dist/utils/tutorial.js +46 -0
- package/dist/utils/types.d.ts +18 -0
- package/dist/utils/types.js +5 -0
- package/dist/utils/ui.d.ts +6 -0
- package/dist/utils/ui.js +56 -0
- package/package.json +85 -0
package/dist/index.css
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
:disabled,
|
|
3
|
+
[disabled],
|
|
4
|
+
[aria-disabled='true'],
|
|
5
|
+
[data-disabled] {
|
|
6
|
+
cursor: not-allowed !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.md-component-button-base {
|
|
10
|
+
@apply state-layer md-sys-state-focus-indicator disabled:bg-md-sys-color-on-surface/10 disabled:text-md-sys-color-on-surface/38 disabled:before:bg-md-sys-color-on-surface/38 relative inline-flex items-center justify-center select-none disabled:cursor-not-allowed;
|
|
11
|
+
transition: box-shadow var(--md-sys-motion-duration, 200ms)
|
|
12
|
+
var(--md-sys-motion-timing-function, cubic-bezier(0.34, 0.8, 0.34, 1));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.md-btn-morph {
|
|
16
|
+
border-radius: var(--btn-shape-override, var(--btn-shape, 9999px));
|
|
17
|
+
transition: border-radius 200ms var(--md-sys-motion-timing-function-emphasized-accel);
|
|
18
|
+
|
|
19
|
+
&::before {
|
|
20
|
+
border-radius: inherit;
|
|
21
|
+
transition: border-radius 200ms var(--md-sys-motion-timing-function-emphasized-accel);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&:active:not(:disabled) {
|
|
25
|
+
border-radius: var(
|
|
26
|
+
--btn-pressed-shape,
|
|
27
|
+
var(--btn-shape-override, var(--btn-shape, 9999px))
|
|
28
|
+
) !important;
|
|
29
|
+
transition-timing-function: var(--md-sys-motion-timing-function-emphasized-decel);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.md-component-button-filled-primary {
|
|
34
|
+
@apply bg-md-sys-color-primary text-md-sys-color-on-primary;
|
|
35
|
+
}
|
|
36
|
+
.md-component-button-filled-secondary {
|
|
37
|
+
@apply bg-md-sys-color-secondary text-md-sys-color-on-secondary;
|
|
38
|
+
}
|
|
39
|
+
.md-component-button-filled-tertiary {
|
|
40
|
+
@apply bg-md-sys-color-tertiary text-md-sys-color-on-tertiary;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.md-component-button-filled-error {
|
|
44
|
+
@apply bg-md-sys-color-error text-md-sys-color-on-error;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.md-component-button-tonal-primary {
|
|
48
|
+
@apply bg-md-sys-color-primary-container text-md-sys-color-on-primary-container;
|
|
49
|
+
}
|
|
50
|
+
.md-component-button-tonal-secondary {
|
|
51
|
+
@apply bg-md-sys-color-secondary-container text-md-sys-color-on-secondary-container;
|
|
52
|
+
}
|
|
53
|
+
.md-component-button-tonal-tertiary {
|
|
54
|
+
@apply bg-md-sys-color-tertiary-container text-md-sys-color-on-tertiary-container;
|
|
55
|
+
}
|
|
56
|
+
.md-component-button-tonal-error {
|
|
57
|
+
@apply bg-md-sys-color-error-container text-md-sys-color-on-error-container;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.md-component-button-outline-default {
|
|
61
|
+
@apply text-md-sys-color-on-surface-variant outline-md-sys-color-outline-variant outline-2;
|
|
62
|
+
}
|
|
63
|
+
.md-component-button-outline-primary {
|
|
64
|
+
@apply text-md-sys-color-primary outline-md-sys-color-primary outline;
|
|
65
|
+
}
|
|
66
|
+
.md-component-button-outline-secondary {
|
|
67
|
+
@apply text-md-sys-color-secondary outline-md-sys-color-secondary outline;
|
|
68
|
+
}
|
|
69
|
+
.md-component-button-outline-tertiary {
|
|
70
|
+
@apply text-md-sys-color-tertiary outline-md-sys-color-tertiary outline;
|
|
71
|
+
}
|
|
72
|
+
.md-component-button-outline-error {
|
|
73
|
+
@apply text-md-sys-color-error outline-md-sys-color-error outline;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.md-component-button-text-primary {
|
|
77
|
+
@apply text-md-sys-color-primary;
|
|
78
|
+
}
|
|
79
|
+
.md-component-button-text-secondary {
|
|
80
|
+
@apply text-md-sys-color-secondary;
|
|
81
|
+
}
|
|
82
|
+
.md-component-button-text-tertiary {
|
|
83
|
+
@apply text-md-sys-color-tertiary;
|
|
84
|
+
}
|
|
85
|
+
.md-component-button-text-error {
|
|
86
|
+
@apply text-md-sys-color-error;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.md-component-button-elevated-default {
|
|
90
|
+
@apply bg-md-sys-color-surface-container-low text-md-sys-color-primary shadow-elevation-1;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.md-component-button-elevated-primary {
|
|
94
|
+
@apply bg-md-sys-color-surface-container-low text-md-sys-color-primary shadow-elevation-1;
|
|
95
|
+
}
|
|
96
|
+
.md-component-button-elevated-secondary {
|
|
97
|
+
@apply bg-md-sys-color-surface-container-low text-md-sys-color-secondary shadow-elevation-1;
|
|
98
|
+
}
|
|
99
|
+
.md-component-button-elevated-tertiary {
|
|
100
|
+
@apply bg-md-sys-color-surface-container-low text-md-sys-color-tertiary shadow-elevation-1;
|
|
101
|
+
}
|
|
102
|
+
.md-component-button-elevated-error {
|
|
103
|
+
@apply bg-md-sys-color-surface-container-low text-md-sys-color-error shadow-elevation-1;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
[class^='material-symbols-'],
|
|
107
|
+
[class*=' material-symbols-'] {
|
|
108
|
+
font-weight: normal;
|
|
109
|
+
font-style: normal;
|
|
110
|
+
font-size: 24px;
|
|
111
|
+
line-height: 1;
|
|
112
|
+
letter-spacing: normal;
|
|
113
|
+
text-transform: none;
|
|
114
|
+
display: inline-block;
|
|
115
|
+
white-space: nowrap;
|
|
116
|
+
word-wrap: normal;
|
|
117
|
+
direction: ltr;
|
|
118
|
+
-webkit-font-smoothing: antialiased;
|
|
119
|
+
-moz-osx-font-smoothing: grayscale;
|
|
120
|
+
text-rendering: optimizeLegibility;
|
|
121
|
+
font-feature-settings: 'liga';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.text-link {
|
|
125
|
+
@apply text-md-sys-color-primary hover:text-md-sys-color-secondary underline;
|
|
126
|
+
transition: color var(--md-sys-motion-duration, 200ms)
|
|
127
|
+
var(--md-sys-motion-timing-function, cubic-bezier(0.34, 0.8, 0.34, 1));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.text-link.md-sys-typescale-label-small {
|
|
131
|
+
@apply md-sys-typescale-label-medium;
|
|
132
|
+
display: inline-flex;
|
|
133
|
+
align-items: center;
|
|
134
|
+
min-height: 44px;
|
|
135
|
+
padding: 6px 8px;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@utility md-sys-state-focus-indicator {
|
|
140
|
+
&:focus-visible {
|
|
141
|
+
outline-style: solid;
|
|
142
|
+
outline-width: 3px;
|
|
143
|
+
outline-offset: 2px;
|
|
144
|
+
outline-color: var(--color-md-sys-color-secondary, currentColor);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
@utility state-layer {
|
|
149
|
+
@apply before:pointer-events-none before:absolute before:inset-0 before:content-[''];
|
|
150
|
+
&::before {
|
|
151
|
+
transition: background-color var(--md-sys-motion-duration-fast, 150ms)
|
|
152
|
+
var(--md-sys-motion-timing-function, cubic-bezier(0.34, 0.8, 0.34, 1));
|
|
153
|
+
}
|
|
154
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--md-sys-elevation-0: none;
|
|
3
|
+
--md-sys-elevation-1:
|
|
4
|
+
|
|
5
|
+
/* Spot */
|
|
6
|
+
0px 1px 2px 0px color-mix(in srgb, var(--color-md-sys-color-shadow) 30%, transparent),
|
|
7
|
+
/* Ambient */ 0px 1px 3px 1px
|
|
8
|
+
color-mix(in srgb, var(--color-md-sys-color-shadow) 15%, transparent);
|
|
9
|
+
--md-sys-elevation-2:
|
|
10
|
+
0px 1px 2px 0px color-mix(in srgb, var(--color-md-sys-color-shadow) 30%, transparent),
|
|
11
|
+
0px 2px 6px 2px color-mix(in srgb, var(--color-md-sys-color-shadow) 15%, transparent);
|
|
12
|
+
--md-sys-elevation-3:
|
|
13
|
+
0px 1px 3px 0px color-mix(in srgb, var(--color-md-sys-color-shadow) 30%, transparent),
|
|
14
|
+
0px 4px 8px 3px color-mix(in srgb, var(--color-md-sys-color-shadow) 15%, transparent);
|
|
15
|
+
--md-sys-elevation-4:
|
|
16
|
+
0px 2px 3px 0px color-mix(in srgb, var(--color-md-sys-color-shadow) 30%, transparent),
|
|
17
|
+
0px 6px 10px 4px color-mix(in srgb, var(--color-md-sys-color-shadow) 15%, transparent);
|
|
18
|
+
--md-sys-elevation-5:
|
|
19
|
+
0px 4px 4px 0px color-mix(in srgb, var(--color-md-sys-color-shadow) 30%, transparent),
|
|
20
|
+
0px 8px 12px 6px color-mix(in srgb, var(--color-md-sys-color-shadow) 15%, transparent);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@utility shadow-elevation-0 {
|
|
24
|
+
box-shadow: var(--md-sys-elevation-0);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@utility shadow-elevation-1 {
|
|
28
|
+
box-shadow: var(--md-sys-elevation-1);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@utility shadow-elevation-2 {
|
|
32
|
+
box-shadow: var(--md-sys-elevation-2);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@utility shadow-elevation-3 {
|
|
36
|
+
box-shadow: var(--md-sys-elevation-3);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@utility shadow-elevation-4 {
|
|
40
|
+
box-shadow: var(--md-sys-elevation-4);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@utility shadow-elevation-5 {
|
|
44
|
+
box-shadow: var(--md-sys-elevation-5);
|
|
45
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
/* Expressive easing */
|
|
3
|
+
--md-sys-motion-timing-function-fast-spatial: cubic-bezier(0.42, 1.67, 0.21, 0.9);
|
|
4
|
+
--md-sys-motion-duration-fast-spatial: 350ms;
|
|
5
|
+
--md-sys-motion-easing-fast-spatial: var(--md-sys-motion-timing-function-fast-spatial)
|
|
6
|
+
var(--md-sys-motion-duration-fast-spatial);
|
|
7
|
+
|
|
8
|
+
--md-sys-motion-timing-function-spatial: cubic-bezier(0.38, 1.21, 0.22, 1);
|
|
9
|
+
--md-sys-motion-duration-spatial: 500ms;
|
|
10
|
+
--md-sys-motion-easing-spatial: var(--md-sys-motion-timing-function-spatial)
|
|
11
|
+
var(--md-sys-motion-duration-spatial);
|
|
12
|
+
|
|
13
|
+
--md-sys-motion-timing-function-slow-spatial: cubic-bezier(0.39, 1.29, 0.35, 0.98);
|
|
14
|
+
--md-sys-motion-duration-slow-spatial: 650ms;
|
|
15
|
+
--md-sys-motion-easing-slow-spatial: var(--md-sys-motion-timing-function-slow-spatial)
|
|
16
|
+
var(--md-sys-motion-duration-slow-spatial);
|
|
17
|
+
|
|
18
|
+
--md-sys-motion-timing-function-fast: cubic-bezier(0.31, 0.94, 0.34, 1);
|
|
19
|
+
--md-sys-motion-duration-fast: 150ms;
|
|
20
|
+
--md-sys-motion-easing-fast: var(--md-sys-motion-timing-function-fast)
|
|
21
|
+
var(--md-sys-motion-duration-fast);
|
|
22
|
+
|
|
23
|
+
--md-sys-motion-timing-function: cubic-bezier(0.34, 0.8, 0.34, 1);
|
|
24
|
+
--md-sys-motion-duration: 200ms;
|
|
25
|
+
--md-sys-motion-easing: var(--md-sys-motion-timing-function) var(--md-sys-motion-duration);
|
|
26
|
+
|
|
27
|
+
--md-sys-motion-timing-function-slow: cubic-bezier(0.34, 0.88, 0.34, 1);
|
|
28
|
+
--md-sys-motion-duration-slow: 300ms;
|
|
29
|
+
--md-sys-motion-easing-slow: var(--md-sys-motion-timing-function-slow)
|
|
30
|
+
var(--md-sys-motion-duration-slow);
|
|
31
|
+
|
|
32
|
+
--md-sys-motion-timing-function-emphasized: linear(
|
|
33
|
+
0,
|
|
34
|
+
0.034 6%,
|
|
35
|
+
0.073 9%,
|
|
36
|
+
0.126 11%,
|
|
37
|
+
0.194 13%,
|
|
38
|
+
0.273 15%,
|
|
39
|
+
0.351 16%,
|
|
40
|
+
0.541 18%,
|
|
41
|
+
0.652 20%,
|
|
42
|
+
0.755 24%,
|
|
43
|
+
0.839 30%,
|
|
44
|
+
0.91 39%,
|
|
45
|
+
0.959 53%,
|
|
46
|
+
0.989 72%,
|
|
47
|
+
1
|
|
48
|
+
);
|
|
49
|
+
--md-sys-motion-timing-function-emphasized-accel: cubic-bezier(0.3, 0, 0.8, 0.15);
|
|
50
|
+
--md-sys-motion-timing-function-emphasized-decel: cubic-bezier(0.05, 0.7, 0.1, 1);
|
|
51
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
@layer utilities {
|
|
2
|
+
.text-link {
|
|
3
|
+
@apply text-md-sys-color-primary hover:text-md-sys-color-secondary underline;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.text-link.md-sys-typescale-label-small {
|
|
7
|
+
@apply md-sys-typescale-label-medium;
|
|
8
|
+
display: inline-flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
min-height: 44px;
|
|
11
|
+
padding: 6px 8px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@utility prose-theme {
|
|
16
|
+
--tw-prose-body: var(--color-md-sys-color-on-surface);
|
|
17
|
+
--tw-prose-headings: var(--color-md-sys-color-on-surface);
|
|
18
|
+
--tw-prose-lead: var(--color-md-sys-color-on-surface-variant);
|
|
19
|
+
--tw-prose-links: var(--color-md-sys-color-primary);
|
|
20
|
+
--tw-prose-bold: var(--color-md-sys-color-on-surface);
|
|
21
|
+
--tw-prose-counters: var(--color-md-sys-color-on-surface-variant);
|
|
22
|
+
--tw-prose-bullets: var(--color-md-sys-color-outline);
|
|
23
|
+
--tw-prose-hr: var(--color-md-sys-color-outline-variant);
|
|
24
|
+
--tw-prose-quotes: var(--color-md-sys-color-on-surface);
|
|
25
|
+
--tw-prose-quote-borders: var(--color-md-sys-color-outline);
|
|
26
|
+
--tw-prose-captions: var(--color-md-sys-color-on-surface-variant);
|
|
27
|
+
--tw-prose-code: var(--color-md-sys-color-primary);
|
|
28
|
+
--tw-prose-pre-code: var(--color-md-sys-color-on-surface);
|
|
29
|
+
--tw-prose-pre-bg: var(--color-md-sys-color-surface-container-high);
|
|
30
|
+
--tw-prose-th-borders: var(--color-md-sys-color-outline-variant);
|
|
31
|
+
--tw-prose-td-borders: var(--color-md-sys-color-outline-variant);
|
|
32
|
+
--tw-prose-invert-body: var(--color-md-sys-color-on-surface);
|
|
33
|
+
--tw-prose-invert-headings: var(--color-md-sys-color-on-surface);
|
|
34
|
+
--tw-prose-invert-lead: var(--color-md-sys-color-on-surface-variant);
|
|
35
|
+
--tw-prose-invert-links: var(--color-md-sys-color-primary);
|
|
36
|
+
--tw-prose-invert-bold: var(--color-md-sys-color-on-surface);
|
|
37
|
+
--tw-prose-invert-counters: var(--color-md-sys-color-on-surface-variant);
|
|
38
|
+
--tw-prose-invert-bullets: var(--color-md-sys-color-outline);
|
|
39
|
+
--tw-prose-invert-hr: var(--color-md-sys-color-outline-variant);
|
|
40
|
+
--tw-prose-invert-quotes: var(--color-md-sys-color-on-surface);
|
|
41
|
+
--tw-prose-invert-quote-borders: var(--color-md-sys-color-outline);
|
|
42
|
+
--tw-prose-invert-captions: var(--color-md-sys-color-on-surface-variant);
|
|
43
|
+
--tw-prose-invert-code: var(--color-md-sys-color-primary);
|
|
44
|
+
--tw-prose-invert-pre-code: var(--color-md-sys-color-on-surface);
|
|
45
|
+
--tw-prose-invert-pre-bg: var(--color-md-sys-color-surface-container-highest);
|
|
46
|
+
--tw-prose-invert-th-borders: var(--color-md-sys-color-outline-variant);
|
|
47
|
+
--tw-prose-invert-td-borders: var(--color-md-sys-color-outline-variant);
|
|
48
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@layer base {
|
|
2
|
+
[data-theme='dark-hc'] {
|
|
3
|
+
--color-md-sys-color-primary: rgb(245 237 255);
|
|
4
|
+
--color-md-sys-color-surface-tint: rgb(207 189 254);
|
|
5
|
+
--color-md-sys-color-on-primary: rgb(0 0 0);
|
|
6
|
+
--color-md-sys-color-primary-container: rgb(203 185 250);
|
|
7
|
+
--color-md-sys-color-on-primary-container: rgb(15 0 51);
|
|
8
|
+
--color-md-sys-color-secondary: rgb(245 237 255);
|
|
9
|
+
--color-md-sys-color-on-secondary: rgb(0 0 0);
|
|
10
|
+
--color-md-sys-color-secondary-container: rgb(200 191 216);
|
|
11
|
+
--color-md-sys-color-on-secondary-container: rgb(13 8 26);
|
|
12
|
+
--color-md-sys-color-tertiary: rgb(255 235 239);
|
|
13
|
+
--color-md-sys-color-on-tertiary: rgb(0 0 0);
|
|
14
|
+
--color-md-sys-color-tertiary-container: rgb(235 180 196);
|
|
15
|
+
--color-md-sys-color-on-tertiary-container: rgb(29 2 13);
|
|
16
|
+
--color-md-sys-color-error: rgb(255 236 233);
|
|
17
|
+
--color-md-sys-color-on-error: rgb(0 0 0);
|
|
18
|
+
--color-md-sys-color-error-container: rgb(255 174 164);
|
|
19
|
+
--color-md-sys-color-on-error-container: rgb(34 0 1);
|
|
20
|
+
--color-md-sys-color-background: rgb(20 18 24);
|
|
21
|
+
--color-md-sys-color-on-background: rgb(230 224 233);
|
|
22
|
+
--color-md-sys-color-surface: rgb(20 18 24);
|
|
23
|
+
--color-md-sys-color-on-surface: rgb(255 255 255);
|
|
24
|
+
--color-md-sys-color-surface-variant: rgb(73 69 78);
|
|
25
|
+
--color-md-sys-color-on-surface-variant: rgb(255 255 255);
|
|
26
|
+
--color-md-sys-color-outline: rgb(244 238 249);
|
|
27
|
+
--color-md-sys-color-outline-variant: rgb(198 192 203);
|
|
28
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
30
|
+
--color-md-sys-color-inverse-surface: rgb(230 224 233);
|
|
31
|
+
--color-md-sys-color-inverse-on-surface: rgb(0 0 0);
|
|
32
|
+
--color-md-sys-color-inverse-primary: rgb(78 63 119);
|
|
33
|
+
--color-md-sys-color-primary-fixed: rgb(233 221 255);
|
|
34
|
+
--color-md-sys-color-on-primary-fixed: rgb(0 0 0);
|
|
35
|
+
--color-md-sys-color-primary-fixed-dim: rgb(207 189 254);
|
|
36
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(22 3 61);
|
|
37
|
+
--color-md-sys-color-secondary-fixed: rgb(232 222 248);
|
|
38
|
+
--color-md-sys-color-on-secondary-fixed: rgb(0 0 0);
|
|
39
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(203 194 219);
|
|
40
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(19 14 32);
|
|
41
|
+
--color-md-sys-color-tertiary-fixed: rgb(255 217 227);
|
|
42
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(0 0 0);
|
|
43
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
|
|
44
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(36 6 19);
|
|
45
|
+
--color-md-sys-color-surface-dim: rgb(20 18 24);
|
|
46
|
+
--color-md-sys-color-surface-bright: rgb(82 79 85);
|
|
47
|
+
--color-md-sys-color-surface-container-lowest: rgb(0 0 0);
|
|
48
|
+
--color-md-sys-color-surface-container-low: rgb(33 31 36);
|
|
49
|
+
--color-md-sys-color-surface-container: rgb(50 47 53);
|
|
50
|
+
--color-md-sys-color-surface-container-high: rgb(61 58 65);
|
|
51
|
+
--color-md-sys-color-surface-container-highest: rgb(72 70 76);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@layer base {
|
|
2
|
+
[data-theme='dark-mc'] {
|
|
3
|
+
--color-md-sys-color-primary: rgb(227 214 255);
|
|
4
|
+
--color-md-sys-color-surface-tint: rgb(207 189 254);
|
|
5
|
+
--color-md-sys-color-on-primary: rgb(43 27 82);
|
|
6
|
+
--color-md-sys-color-primary-container: rgb(152 135 197);
|
|
7
|
+
--color-md-sys-color-on-primary-container: rgb(0 0 0);
|
|
8
|
+
--color-md-sys-color-secondary: rgb(226 216 242);
|
|
9
|
+
--color-md-sys-color-on-secondary: rgb(40 35 54);
|
|
10
|
+
--color-md-sys-color-secondary-container: rgb(149 141 164);
|
|
11
|
+
--color-md-sys-color-on-secondary-container: rgb(0 0 0);
|
|
12
|
+
--color-md-sys-color-tertiary: rgb(255 208 221);
|
|
13
|
+
--color-md-sys-color-on-tertiary: rgb(61 26 39);
|
|
14
|
+
--color-md-sys-color-tertiary-container: rgb(181 131 146);
|
|
15
|
+
--color-md-sys-color-on-tertiary-container: rgb(0 0 0);
|
|
16
|
+
--color-md-sys-color-error: rgb(255 210 204);
|
|
17
|
+
--color-md-sys-color-on-error: rgb(84 0 3);
|
|
18
|
+
--color-md-sys-color-error-container: rgb(255 84 73);
|
|
19
|
+
--color-md-sys-color-on-error-container: rgb(0 0 0);
|
|
20
|
+
--color-md-sys-color-background: rgb(20 18 24);
|
|
21
|
+
--color-md-sys-color-on-background: rgb(230 224 233);
|
|
22
|
+
--color-md-sys-color-surface: rgb(20 18 24);
|
|
23
|
+
--color-md-sys-color-on-surface: rgb(255 255 255);
|
|
24
|
+
--color-md-sys-color-surface-variant: rgb(73 69 78);
|
|
25
|
+
--color-md-sys-color-on-surface-variant: rgb(224 218 229);
|
|
26
|
+
--color-md-sys-color-outline: rgb(181 176 187);
|
|
27
|
+
--color-md-sys-color-outline-variant: rgb(147 142 153);
|
|
28
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
30
|
+
--color-md-sys-color-inverse-surface: rgb(230 224 233);
|
|
31
|
+
--color-md-sys-color-inverse-on-surface: rgb(43 41 47);
|
|
32
|
+
--color-md-sys-color-inverse-primary: rgb(78 63 119);
|
|
33
|
+
--color-md-sys-color-primary-fixed: rgb(233 221 255);
|
|
34
|
+
--color-md-sys-color-on-primary-fixed: rgb(22 3 61);
|
|
35
|
+
--color-md-sys-color-primary-fixed-dim: rgb(207 189 254);
|
|
36
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(60 45 99);
|
|
37
|
+
--color-md-sys-color-secondary-fixed: rgb(232 222 248);
|
|
38
|
+
--color-md-sys-color-on-secondary-fixed: rgb(19 14 32);
|
|
39
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(203 194 219);
|
|
40
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(57 51 71);
|
|
41
|
+
--color-md-sys-color-tertiary-fixed: rgb(255 217 227);
|
|
42
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(36 6 19);
|
|
43
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
|
|
44
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(80 43 56);
|
|
45
|
+
--color-md-sys-color-surface-dim: rgb(20 18 24);
|
|
46
|
+
--color-md-sys-color-surface-bright: rgb(70 67 74);
|
|
47
|
+
--color-md-sys-color-surface-container-lowest: rgb(8 7 11);
|
|
48
|
+
--color-md-sys-color-surface-container-low: rgb(31 29 34);
|
|
49
|
+
--color-md-sys-color-surface-container: rgb(41 39 45);
|
|
50
|
+
--color-md-sys-color-surface-container-high: rgb(52 49 56);
|
|
51
|
+
--color-md-sys-color-surface-container-highest: rgb(63 60 67);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.dark {
|
|
2
|
+
--color-md-sys-color-primary: rgb(207 189 254);
|
|
3
|
+
--color-md-sys-color-surface-tint: rgb(207 189 254);
|
|
4
|
+
--color-md-sys-color-on-primary: rgb(54 39 93);
|
|
5
|
+
--color-md-sys-color-primary-container: rgb(77 61 117);
|
|
6
|
+
--color-md-sys-color-on-primary-container: rgb(233 221 255);
|
|
7
|
+
--color-md-sys-color-secondary: rgb(203 194 219);
|
|
8
|
+
--color-md-sys-color-on-secondary: rgb(51 45 65);
|
|
9
|
+
--color-md-sys-color-secondary-container: rgb(74 68 88);
|
|
10
|
+
--color-md-sys-color-on-secondary-container: rgb(232 222 248);
|
|
11
|
+
--color-md-sys-color-tertiary: rgb(239 184 200);
|
|
12
|
+
--color-md-sys-color-on-tertiary: rgb(74 37 50);
|
|
13
|
+
--color-md-sys-color-tertiary-container: rgb(99 59 72);
|
|
14
|
+
--color-md-sys-color-on-tertiary-container: rgb(255 217 227);
|
|
15
|
+
--color-md-sys-color-error: rgb(255 180 171);
|
|
16
|
+
--color-md-sys-color-on-error: rgb(105 0 5);
|
|
17
|
+
--color-md-sys-color-error-container: rgb(147 0 10);
|
|
18
|
+
--color-md-sys-color-on-error-container: rgb(255 218 214);
|
|
19
|
+
--color-md-sys-color-background: rgb(20 18 24);
|
|
20
|
+
--color-md-sys-color-on-background: rgb(230 224 233);
|
|
21
|
+
--color-md-sys-color-surface: rgb(20 18 24);
|
|
22
|
+
--color-md-sys-color-on-surface: rgb(230 224 233);
|
|
23
|
+
--color-md-sys-color-surface-variant: rgb(73 69 78);
|
|
24
|
+
--color-md-sys-color-on-surface-variant: rgb(202 196 207);
|
|
25
|
+
--color-md-sys-color-outline: rgb(148 143 153);
|
|
26
|
+
--color-md-sys-color-outline-variant: rgb(73 69 78);
|
|
27
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
28
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-inverse-surface: rgb(230 224 233);
|
|
30
|
+
--color-md-sys-color-inverse-on-surface: rgb(50 47 53);
|
|
31
|
+
--color-md-sys-color-inverse-primary: rgb(101 85 143);
|
|
32
|
+
--color-md-sys-color-primary-fixed: rgb(233 221 255);
|
|
33
|
+
--color-md-sys-color-on-primary-fixed: rgb(32 16 71);
|
|
34
|
+
--color-md-sys-color-primary-fixed-dim: rgb(207 189 254);
|
|
35
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(77 61 117);
|
|
36
|
+
--color-md-sys-color-secondary-fixed: rgb(232 222 248);
|
|
37
|
+
--color-md-sys-color-on-secondary-fixed: rgb(30 25 43);
|
|
38
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(203 194 219);
|
|
39
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(74 68 88);
|
|
40
|
+
--color-md-sys-color-tertiary-fixed: rgb(255 217 227);
|
|
41
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(49 16 29);
|
|
42
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
|
|
43
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(99 59 72);
|
|
44
|
+
--color-md-sys-color-surface-dim: rgb(20 18 24);
|
|
45
|
+
--color-md-sys-color-surface-bright: rgb(59 56 62);
|
|
46
|
+
--color-md-sys-color-surface-container-lowest: rgb(15 13 19);
|
|
47
|
+
--color-md-sys-color-surface-container-low: rgb(29 27 32);
|
|
48
|
+
--color-md-sys-color-surface-container: rgb(33 31 36);
|
|
49
|
+
--color-md-sys-color-surface-container-high: rgb(43 41 47);
|
|
50
|
+
--color-md-sys-color-surface-container-highest: rgb(54 52 58);
|
|
51
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@layer base {
|
|
2
|
+
[data-theme='light-hc'] {
|
|
3
|
+
--color-md-sys-color-primary: rgb(49 34 89);
|
|
4
|
+
--color-md-sys-color-surface-tint: rgb(101 85 143);
|
|
5
|
+
--color-md-sys-color-on-primary: rgb(255 255 255);
|
|
6
|
+
--color-md-sys-color-primary-container: rgb(79 64 120);
|
|
7
|
+
--color-md-sys-color-on-primary-container: rgb(255 255 255);
|
|
8
|
+
--color-md-sys-color-secondary: rgb(47 41 60);
|
|
9
|
+
--color-md-sys-color-on-secondary: rgb(255 255 255);
|
|
10
|
+
--color-md-sys-color-secondary-container: rgb(76 70 91);
|
|
11
|
+
--color-md-sys-color-on-secondary-container: rgb(255 255 255);
|
|
12
|
+
--color-md-sys-color-tertiary: rgb(69 33 46);
|
|
13
|
+
--color-md-sys-color-on-tertiary: rgb(255 255 255);
|
|
14
|
+
--color-md-sys-color-tertiary-container: rgb(102 61 75);
|
|
15
|
+
--color-md-sys-color-on-tertiary-container: rgb(255 255 255);
|
|
16
|
+
--color-md-sys-color-error: rgb(96 0 4);
|
|
17
|
+
--color-md-sys-color-on-error: rgb(255 255 255);
|
|
18
|
+
--color-md-sys-color-error-container: rgb(152 0 10);
|
|
19
|
+
--color-md-sys-color-on-error-container: rgb(255 255 255);
|
|
20
|
+
--color-md-sys-color-background: rgb(253 247 255);
|
|
21
|
+
--color-md-sys-color-on-background: rgb(29 27 32);
|
|
22
|
+
--color-md-sys-color-surface: rgb(253 247 255);
|
|
23
|
+
--color-md-sys-color-on-surface: rgb(0 0 0);
|
|
24
|
+
--color-md-sys-color-surface-variant: rgb(231 224 235);
|
|
25
|
+
--color-md-sys-color-on-surface-variant: rgb(0 0 0);
|
|
26
|
+
--color-md-sys-color-outline: rgb(46 43 51);
|
|
27
|
+
--color-md-sys-color-outline-variant: rgb(75 72 81);
|
|
28
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
30
|
+
--color-md-sys-color-inverse-surface: rgb(50 47 53);
|
|
31
|
+
--color-md-sys-color-inverse-on-surface: rgb(255 255 255);
|
|
32
|
+
--color-md-sys-color-inverse-primary: rgb(207 189 254);
|
|
33
|
+
--color-md-sys-color-primary-fixed: rgb(79 64 120);
|
|
34
|
+
--color-md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
35
|
+
--color-md-sys-color-primary-fixed-dim: rgb(56 41 96);
|
|
36
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(255 255 255);
|
|
37
|
+
--color-md-sys-color-secondary-fixed: rgb(76 70 91);
|
|
38
|
+
--color-md-sys-color-on-secondary-fixed: rgb(255 255 255);
|
|
39
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(53 48 67);
|
|
40
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(255 255 255);
|
|
41
|
+
--color-md-sys-color-tertiary-fixed: rgb(102 61 75);
|
|
42
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
43
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(76 39 52);
|
|
44
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(255 255 255);
|
|
45
|
+
--color-md-sys-color-surface-dim: rgb(188 183 191);
|
|
46
|
+
--color-md-sys-color-surface-bright: rgb(253 247 255);
|
|
47
|
+
--color-md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
48
|
+
--color-md-sys-color-surface-container-low: rgb(245 239 247);
|
|
49
|
+
--color-md-sys-color-surface-container: rgb(230 224 233);
|
|
50
|
+
--color-md-sys-color-surface-container-high: rgb(216 210 218);
|
|
51
|
+
--color-md-sys-color-surface-container-highest: rgb(202 197 204);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
@layer base {
|
|
2
|
+
[data-theme='light-mc'] {
|
|
3
|
+
--color-md-sys-color-primary: rgb(60 45 99);
|
|
4
|
+
--color-md-sys-color-surface-tint: rgb(101 85 143);
|
|
5
|
+
--color-md-sys-color-on-primary: rgb(255 255 255);
|
|
6
|
+
--color-md-sys-color-primary-container: rgb(116 100 159);
|
|
7
|
+
--color-md-sys-color-on-primary-container: rgb(255 255 255);
|
|
8
|
+
--color-md-sys-color-secondary: rgb(57 51 71);
|
|
9
|
+
--color-md-sys-color-on-secondary: rgb(255 255 255);
|
|
10
|
+
--color-md-sys-color-secondary-container: rgb(113 106 128);
|
|
11
|
+
--color-md-sys-color-on-secondary-container: rgb(255 255 255);
|
|
12
|
+
--color-md-sys-color-tertiary: rgb(80 43 56);
|
|
13
|
+
--color-md-sys-color-on-tertiary: rgb(255 255 255);
|
|
14
|
+
--color-md-sys-color-tertiary-container: rgb(142 96 111);
|
|
15
|
+
--color-md-sys-color-on-tertiary-container: rgb(255 255 255);
|
|
16
|
+
--color-md-sys-color-error: rgb(116 0 6);
|
|
17
|
+
--color-md-sys-color-on-error: rgb(255 255 255);
|
|
18
|
+
--color-md-sys-color-error-container: rgb(207 44 39);
|
|
19
|
+
--color-md-sys-color-on-error-container: rgb(255 255 255);
|
|
20
|
+
--color-md-sys-color-background: rgb(253 247 255);
|
|
21
|
+
--color-md-sys-color-on-background: rgb(29 27 32);
|
|
22
|
+
--color-md-sys-color-surface: rgb(253 247 255);
|
|
23
|
+
--color-md-sys-color-on-surface: rgb(18 16 22);
|
|
24
|
+
--color-md-sys-color-surface-variant: rgb(231 224 235);
|
|
25
|
+
--color-md-sys-color-on-surface-variant: rgb(56 53 61);
|
|
26
|
+
--color-md-sys-color-outline: rgb(84 81 90);
|
|
27
|
+
--color-md-sys-color-outline-variant: rgb(111 107 117);
|
|
28
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
30
|
+
--color-md-sys-color-inverse-surface: rgb(50 47 53);
|
|
31
|
+
--color-md-sys-color-inverse-on-surface: rgb(245 239 247);
|
|
32
|
+
--color-md-sys-color-inverse-primary: rgb(207 189 254);
|
|
33
|
+
--color-md-sys-color-primary-fixed: rgb(116 100 159);
|
|
34
|
+
--color-md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
35
|
+
--color-md-sys-color-primary-fixed-dim: rgb(91 76 132);
|
|
36
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(255 255 255);
|
|
37
|
+
--color-md-sys-color-secondary-fixed: rgb(113 106 128);
|
|
38
|
+
--color-md-sys-color-on-secondary-fixed: rgb(255 255 255);
|
|
39
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(88 82 103);
|
|
40
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(255 255 255);
|
|
41
|
+
--color-md-sys-color-tertiary-fixed: rgb(142 96 111);
|
|
42
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
43
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(115 72 86);
|
|
44
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(255 255 255);
|
|
45
|
+
--color-md-sys-color-surface-dim: rgb(202 197 204);
|
|
46
|
+
--color-md-sys-color-surface-bright: rgb(253 247 255);
|
|
47
|
+
--color-md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
48
|
+
--color-md-sys-color-surface-container-low: rgb(248 242 250);
|
|
49
|
+
--color-md-sys-color-surface-container: rgb(236 230 238);
|
|
50
|
+
--color-md-sys-color-surface-container-high: rgb(225 219 227);
|
|
51
|
+
--color-md-sys-color-surface-container-highest: rgb(213 208 216);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--color-md-sys-color-primary: rgb(101 85 143);
|
|
3
|
+
--color-md-sys-color-surface-tint: rgb(101 85 143);
|
|
4
|
+
--color-md-sys-color-on-primary: rgb(255 255 255);
|
|
5
|
+
--color-md-sys-color-primary-container: rgb(233 221 255);
|
|
6
|
+
--color-md-sys-color-on-primary-container: rgb(77 61 117);
|
|
7
|
+
--color-md-sys-color-secondary: rgb(98 91 113);
|
|
8
|
+
--color-md-sys-color-on-secondary: rgb(255 255 255);
|
|
9
|
+
--color-md-sys-color-secondary-container: rgb(232 222 248);
|
|
10
|
+
--color-md-sys-color-on-secondary-container: rgb(74 68 88);
|
|
11
|
+
--color-md-sys-color-tertiary: rgb(126 82 96);
|
|
12
|
+
--color-md-sys-color-on-tertiary: rgb(255 255 255);
|
|
13
|
+
--color-md-sys-color-tertiary-container: rgb(255 217 227);
|
|
14
|
+
--color-md-sys-color-on-tertiary-container: rgb(99 59 72);
|
|
15
|
+
--color-md-sys-color-error: rgb(186 26 26);
|
|
16
|
+
--color-md-sys-color-on-error: rgb(255 255 255);
|
|
17
|
+
--color-md-sys-color-error-container: rgb(255 218 214);
|
|
18
|
+
--color-md-sys-color-on-error-container: rgb(147 0 10);
|
|
19
|
+
--color-md-sys-color-background: rgb(253 247 255);
|
|
20
|
+
--color-md-sys-color-on-background: rgb(29 27 32);
|
|
21
|
+
--color-md-sys-color-surface: rgb(253 247 255);
|
|
22
|
+
--color-md-sys-color-on-surface: rgb(29 27 32);
|
|
23
|
+
--color-md-sys-color-surface-variant: rgb(231 224 235);
|
|
24
|
+
--color-md-sys-color-on-surface-variant: rgb(73 69 78);
|
|
25
|
+
--color-md-sys-color-outline: rgb(122 117 127);
|
|
26
|
+
--color-md-sys-color-outline-variant: rgb(202 196 207);
|
|
27
|
+
--color-md-sys-color-shadow: rgb(0 0 0);
|
|
28
|
+
--color-md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
+
--color-md-sys-color-inverse-surface: rgb(50 47 53);
|
|
30
|
+
--color-md-sys-color-inverse-on-surface: rgb(245 239 247);
|
|
31
|
+
--color-md-sys-color-inverse-primary: rgb(207 189 254);
|
|
32
|
+
--color-md-sys-color-primary-fixed: rgb(233 221 255);
|
|
33
|
+
--color-md-sys-color-on-primary-fixed: rgb(32 16 71);
|
|
34
|
+
--color-md-sys-color-primary-fixed-dim: rgb(207 189 254);
|
|
35
|
+
--color-md-sys-color-on-primary-fixed-variant: rgb(77 61 117);
|
|
36
|
+
--color-md-sys-color-secondary-fixed: rgb(232 222 248);
|
|
37
|
+
--color-md-sys-color-on-secondary-fixed: rgb(30 25 43);
|
|
38
|
+
--color-md-sys-color-secondary-fixed-dim: rgb(203 194 219);
|
|
39
|
+
--color-md-sys-color-on-secondary-fixed-variant: rgb(74 68 88);
|
|
40
|
+
--color-md-sys-color-tertiary-fixed: rgb(255 217 227);
|
|
41
|
+
--color-md-sys-color-on-tertiary-fixed: rgb(49 16 29);
|
|
42
|
+
--color-md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
|
|
43
|
+
--color-md-sys-color-on-tertiary-fixed-variant: rgb(99 59 72);
|
|
44
|
+
--color-md-sys-color-surface-dim: rgb(222 216 224);
|
|
45
|
+
--color-md-sys-color-surface-bright: rgb(253 247 255);
|
|
46
|
+
--color-md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
47
|
+
--color-md-sys-color-surface-container-low: rgb(248 242 250);
|
|
48
|
+
--color-md-sys-color-surface-container: rgb(242 236 244);
|
|
49
|
+
--color-md-sys-color-surface-container-high: rgb(236 230 238);
|
|
50
|
+
--color-md-sys-color-surface-container-highest: rgb(230 224 233);
|
|
51
|
+
}
|