@lunar-js/lunar 0.0.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/CHANGELOG.md +12 -0
- package/LICENSE +21 -0
- package/README.md +41 -0
- package/dist/components/composite/Card/Card.d.ts +64 -0
- package/dist/components/composite/Card/Card.d.ts.map +1 -0
- package/dist/components/composite/Card/Card.js +86 -0
- package/dist/components/composite/Card/Card.js.map +1 -0
- package/dist/components/composite/Card/card.css.js +62 -0
- package/dist/components/composite/Card/card.css.js.map +1 -0
- package/dist/components/composite/Dialog/Dialog.d.ts +45 -0
- package/dist/components/composite/Dialog/Dialog.d.ts.map +1 -0
- package/dist/components/composite/Dialog/Dialog.js +117 -0
- package/dist/components/composite/Dialog/Dialog.js.map +1 -0
- package/dist/components/composite/Dialog/DialogProvider.d.ts +11 -0
- package/dist/components/composite/Dialog/DialogProvider.d.ts.map +1 -0
- package/dist/components/composite/Dialog/DialogProvider.js +19 -0
- package/dist/components/composite/Dialog/DialogProvider.js.map +1 -0
- package/dist/components/composite/Dialog/dialog.css.js +104 -0
- package/dist/components/composite/Dialog/dialog.css.js.map +1 -0
- package/dist/components/primitives/Button/Button.d.ts +27 -0
- package/dist/components/primitives/Button/Button.d.ts.map +1 -0
- package/dist/components/primitives/Button/Button.js +25 -0
- package/dist/components/primitives/Button/Button.js.map +1 -0
- package/dist/components/primitives/Button/button.css.d.ts +16 -0
- package/dist/components/primitives/Button/button.css.d.ts.map +1 -0
- package/dist/components/primitives/Button/button.css.js +202 -0
- package/dist/components/primitives/Button/button.css.js.map +1 -0
- package/dist/components/primitives/Button/button.types.d.ts +8 -0
- package/dist/components/primitives/Button/button.types.d.ts.map +1 -0
- package/dist/components/primitives/Input/Input.d.ts +12 -0
- package/dist/components/primitives/Input/Input.d.ts.map +1 -0
- package/dist/components/primitives/Input/Input.js +21 -0
- package/dist/components/primitives/Input/Input.js.map +1 -0
- package/dist/components/primitives/Input/input.css.js +54 -0
- package/dist/components/primitives/Input/input.css.js.map +1 -0
- package/dist/components/primitives/Label/Label.d.ts +13 -0
- package/dist/components/primitives/Label/Label.d.ts.map +1 -0
- package/dist/components/primitives/Label/Label.js +22 -0
- package/dist/components/primitives/Label/Label.js.map +1 -0
- package/dist/components/primitives/Label/label.css.js +35 -0
- package/dist/components/primitives/Label/label.css.js.map +1 -0
- package/dist/components/primitives/Typography/Text.d.ts +40 -0
- package/dist/components/primitives/Typography/Text.d.ts.map +1 -0
- package/dist/components/primitives/Typography/Text.js +28 -0
- package/dist/components/primitives/Typography/Text.js.map +1 -0
- package/dist/components/primitives/Typography/text.css.d.ts +31 -0
- package/dist/components/primitives/Typography/text.css.d.ts.map +1 -0
- package/dist/components/primitives/Typography/text.css.js +1019 -0
- package/dist/components/primitives/Typography/text.css.js.map +1 -0
- package/dist/components/primitives/Typography/text.types.d.ts +10 -0
- package/dist/components/primitives/Typography/text.types.d.ts.map +1 -0
- package/dist/constants/theming.d.ts +10 -0
- package/dist/constants/theming.d.ts.map +1 -0
- package/dist/constants/theming.js +11 -0
- package/dist/constants/theming.js.map +1 -0
- package/dist/hooks/dialog.d.ts +7 -0
- package/dist/hooks/dialog.d.ts.map +1 -0
- package/dist/hooks/dialog.js +14 -0
- package/dist/hooks/dialog.js.map +1 -0
- package/dist/hooks/refs.js +23 -0
- package/dist/hooks/refs.js.map +1 -0
- package/dist/hooks/theme.d.ts +7 -0
- package/dist/hooks/theme.d.ts.map +1 -0
- package/dist/hooks/theme.js +14 -0
- package/dist/hooks/theme.js.map +1 -0
- package/dist/hooks/utils.js +6 -0
- package/dist/hooks/utils.js.map +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +20 -0
- package/dist/styles.css.d.ts +4 -0
- package/dist/styles.css.js +5 -0
- package/dist/themes/ThemeProvider/ThemeProvider.d.ts +19 -0
- package/dist/themes/ThemeProvider/ThemeProvider.d.ts.map +1 -0
- package/dist/themes/ThemeProvider/ThemeProvider.js +25 -0
- package/dist/themes/ThemeProvider/ThemeProvider.js.map +1 -0
- package/dist/themes/regal.css.d.ts +5 -0
- package/dist/themes/regal.css.d.ts.map +1 -0
- package/dist/themes/regal.css.js +720 -0
- package/dist/themes/regal.css.js.map +1 -0
- package/dist/themes/styles/color-scheme.css.d.ts +6 -0
- package/dist/themes/styles/color-scheme.css.d.ts.map +1 -0
- package/dist/themes/styles/color-scheme.css.js +9 -0
- package/dist/themes/styles/color-scheme.css.js.map +1 -0
- package/dist/themes/styles/utilities.d.ts +125 -0
- package/dist/themes/styles/utilities.d.ts.map +1 -0
- package/dist/themes/styles/utilities.js +129 -0
- package/dist/themes/styles/utilities.js.map +1 -0
- package/dist/themes/tokens/primitives/borders.d.ts +22 -0
- package/dist/themes/tokens/primitives/borders.d.ts.map +1 -0
- package/dist/themes/tokens/primitives/borders.js +23 -0
- package/dist/themes/tokens/primitives/borders.js.map +1 -0
- package/dist/themes/tokens/primitives/colors.d.ts +100 -0
- package/dist/themes/tokens/primitives/colors.d.ts.map +1 -0
- package/dist/themes/tokens/primitives/colors.js +101 -0
- package/dist/themes/tokens/primitives/colors.js.map +1 -0
- package/dist/themes/tokens/primitives/shadows.d.ts +14 -0
- package/dist/themes/tokens/primitives/shadows.d.ts.map +1 -0
- package/dist/themes/tokens/primitives/shadows.js +15 -0
- package/dist/themes/tokens/primitives/shadows.js.map +1 -0
- package/dist/themes/tokens/primitives/spacing.d.ts +41 -0
- package/dist/themes/tokens/primitives/spacing.d.ts.map +1 -0
- package/dist/themes/tokens/primitives/spacing.js +42 -0
- package/dist/themes/tokens/primitives/spacing.js.map +1 -0
- package/dist/themes/tokens/primitives/typography.d.ts +105 -0
- package/dist/themes/tokens/primitives/typography.d.ts.map +1 -0
- package/dist/themes/tokens/primitives/typography.js +106 -0
- package/dist/themes/tokens/primitives/typography.js.map +1 -0
- package/dist/themes/tokens/semantic/borders.js +23 -0
- package/dist/themes/tokens/semantic/borders.js.map +1 -0
- package/dist/themes/tokens/semantic/colors.js +145 -0
- package/dist/themes/tokens/semantic/colors.js.map +1 -0
- package/dist/themes/tokens/semantic/shadows.js +15 -0
- package/dist/themes/tokens/semantic/shadows.js.map +1 -0
- package/dist/themes/tokens/semantic/spacing.js +70 -0
- package/dist/themes/tokens/semantic/spacing.js.map +1 -0
- package/dist/themes/tokens/semantic/typography.js +34 -0
- package/dist/themes/tokens/semantic/typography.js.map +1 -0
- package/dist/themes/tokens/tokens.css.d.ts +714 -0
- package/dist/themes/tokens/tokens.css.d.ts.map +1 -0
- package/dist/themes/tokens/tokens.css.js +36 -0
- package/dist/themes/tokens/tokens.css.js.map +1 -0
- package/dist/types/theming.d.ts +7 -0
- package/dist/types/theming.d.ts.map +1 -0
- package/package.json +80 -0
- package/src/components/composite/Card/Card.tsx +62 -0
- package/src/components/composite/Card/card.css.ts +79 -0
- package/src/components/composite/Dialog/Dialog.tsx +150 -0
- package/src/components/composite/Dialog/DialogProvider.tsx +21 -0
- package/src/components/composite/Dialog/dialog.css.ts +137 -0
- package/src/components/primitives/Button/Button.tsx +35 -0
- package/src/components/primitives/Button/button.css.ts +236 -0
- package/src/components/primitives/Button/button.types.ts +23 -0
- package/src/components/primitives/Input/Input.tsx +13 -0
- package/src/components/primitives/Input/input.css.ts +64 -0
- package/src/components/primitives/Label/Label.tsx +15 -0
- package/src/components/primitives/Label/label.css.ts +39 -0
- package/src/components/primitives/Typography/Text.tsx +55 -0
- package/src/components/primitives/Typography/text.css.ts +1091 -0
- package/src/components/primitives/Typography/text.types.ts +55 -0
- package/src/constants/theming.ts +16 -0
- package/src/hooks/dialog.ts +15 -0
- package/src/hooks/refs.ts +34 -0
- package/src/hooks/theme.ts +15 -0
- package/src/hooks/utils.ts +3 -0
- package/src/index.css.ts +26 -0
- package/src/index.ts +111 -0
- package/src/themes/ThemeProvider/ThemeProvider.tsx +39 -0
- package/src/themes/regal.css.ts +741 -0
- package/src/themes/styles/color-scheme.css.ts +11 -0
- package/src/themes/styles/utilities.ts +140 -0
- package/src/themes/tokens/primitives/borders.ts +21 -0
- package/src/themes/tokens/primitives/colors.ts +114 -0
- package/src/themes/tokens/primitives/shadows.ts +12 -0
- package/src/themes/tokens/primitives/spacing.ts +39 -0
- package/src/themes/tokens/primitives/typography.ts +125 -0
- package/src/themes/tokens/semantic/borders.ts +21 -0
- package/src/themes/tokens/semantic/colors.ts +166 -0
- package/src/themes/tokens/semantic/shadows.ts +12 -0
- package/src/themes/tokens/semantic/spacing.ts +75 -0
- package/src/themes/tokens/semantic/typography.ts +35 -0
- package/src/themes/tokens/tokens.css.ts +42 -0
- package/src/types/theming.ts +14 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regal.css.js","names":[],"sources":["../../src/themes/regal.css.ts"],"sourcesContent":["import { createTheme, style } from '@vanilla-extract/css';\n\nimport { themeContract } from './tokens/tokens.css.js';\nimport {\n COLORS__PEARL,\n COLORS__GOLD,\n COLORS__GREEN,\n COLORS__YELLOW,\n COLORS__RED,\n COLORS__BLUE,\n COLORS__PURE,\n} from './tokens/primitives/colors.js';\nimport { SPACING } from './tokens/primitives/spacing.js';\nimport { BORDER_RADIUS, BORDER_WIDTH } from './tokens/primitives/borders.js';\nimport { BOX_SHADOW } from './tokens/primitives/shadows.js';\nimport {\n FONT_FAMILY,\n FONT_SIZE,\n FONT_WEIGHT,\n LINE_HEIGHT__TIGHT,\n LINE_HEIGHT__RELAXED,\n LETTER_SPACING,\n} from './tokens/primitives/typography.js';\n\nconst regalThemeVars = createTheme(themeContract, {\n colors: {\n action: {\n bg: {\n primary: {\n default: `light-dark(oklch(${COLORS__GOLD[300]}), oklch(${COLORS__GOLD[300]}))`, // Gold background (same for both)\n hover: `light-dark(oklch(${COLORS__GOLD[300]} / 0.9), oklch(${COLORS__GOLD[300]} / 0.9))`,\n active: `light-dark(oklch(${COLORS__GOLD[300]} / 0.8), oklch(${COLORS__GOLD[300]} / 0.8))`,\n disabled: `light-dark(oklch(${COLORS__GOLD[300]} / 0.4), oklch(${COLORS__GOLD[300]} / 0.4))`,\n },\n secondary: {\n default: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`, // Gold background (same for both)\n hover: `light-dark(oklch(${COLORS__PEARL[400]} / 0.9), oklch(${COLORS__PEARL[600]} / 0.9))`, // Gold background (same for both)\n active: `light-dark(oklch(${COLORS__PEARL[400]} / 0.8), oklch(${COLORS__PEARL[600]} / 0.8))`, // Gold background (same for both)\n disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.4), oklch(${COLORS__PEARL[600]} / 0.4))`,\n },\n outline: {\n default: `light-dark(oklch(${COLORS__PEARL[400]} / 0.0125), oklch(${COLORS__PEARL[700]} / 0.0125))`,\n hover: `light-dark(oklch(${COLORS__PEARL[400]} / 0.3), oklch(${COLORS__PEARL[700]} / 0.3))`,\n active: `light-dark(oklch(${COLORS__PEARL[400]} / 0.05), oklch(${COLORS__PEARL[700]} / 0.05))`,\n disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.025), oklch(${COLORS__PEARL[700]} / 0.025))`,\n },\n },\n color: {\n primary: `light-dark(oklch(${COLORS__PEARL[950]}), oklch(${COLORS__PEARL[950]}))`,\n outline: {\n disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.4), oklch(${COLORS__PEARL[700]} / 0.4))`,\n },\n },\n destructive: {\n default: `light-dark(oklch(${COLORS__RED[600]}), oklch(${COLORS__RED[400]}))`, // Same red for both\n hover: `light-dark(oklch(${COLORS__RED[600]} / 0.9), oklch(${COLORS__RED[300]} / 0.9))`, // Same red for both\n active: `light-dark(oklch(${COLORS__RED[600]} / 0.8), oklch(${COLORS__RED[300]} / 0.8))`, // Same red for both\n disabled: `light-dark(oklch(${COLORS__RED[600]} / 0.4), oklch(${COLORS__RED[300]} / 0.4))`, // Same red for both\n },\n ghost: {\n default: `light-dark(${COLORS__PURE.transparent}, ${COLORS__PURE.transparent})`, // Transparent background for both\n hover: `light-dark(oklch(${COLORS__GOLD[300]} / 0.5), oklch(${COLORS__GOLD[300]} / 0.5))`, // Transparent background for both\n active: `light-dark(oklch(${COLORS__GOLD[300]} / 0.6), oklch(${COLORS__GOLD[300]} / 0.6))`, // Transparent background for both\n disabled: `light-dark(transparent, transparent)`, // Transparent for both\n },\n },\n border: {\n default: `light-dark(oklch(${COLORS__PEARL[300]}), oklch(${COLORS__PEARL[700]}))`, // Light vs dark neutral border\n subtle: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[800]}))`, // Light vs dark subtle border\n strong: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`, // Light vs dark strong border\n interactive: {\n default: `light-dark(oklch(${COLORS__PEARL[900]} / 0.9), oklch(${COLORS__PEARL[400]}))`, // Gold 500 vs lighter gold for dark theme\n hover: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[400]} / 0.9))`, // Gold 500 vs lighter gold for dark theme\n active: `light-dark(oklch(${COLORS__PEARL[900]} / 0.8), oklch(${COLORS__PEARL[400]} / 0.8))`, // Gold 500 vs lighter gold for dark theme\n },\n focus: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[400]}))`, // Gold focus ring\n success: `light-dark(oklch(${COLORS__GREEN[500]}), oklch(${COLORS__GREEN[400]}))`, // Lighter for dark theme\n warning: `light-dark(oklch(${COLORS__YELLOW[500]}), oklch(${COLORS__YELLOW[400]}))`,\n error: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,\n info: `light-dark(oklch(${COLORS__BLUE[500]}), oklch(${COLORS__BLUE[400]}))`,\n action: {\n primary: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`, // Matches primary action\n secondary: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`, // Gold border for secondary\n destructive: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,\n disabled: `light-dark(oklch(${COLORS__GOLD[300]} / 0.4), oklch(${COLORS__GOLD[300]} / 0.4))`,\n },\n },\n text: {\n primary: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`, // High contrast dark vs light text\n secondary: `light-dark(oklch(${COLORS__PEARL[700]}), oklch(${COLORS__PEARL[200]}))`, // Medium contrast text\n tertiary: `light-dark(oklch(${COLORS__PEARL[600]}), oklch(${COLORS__PEARL[300]}))`, // Low contrast text\n interactive: {\n default: `light-dark(oklch(${COLORS__PEARL[900]} / 0.9), oklch(${COLORS__PEARL[300]}))`, // Gold for links - lighter for dark theme\n hover: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[300]} / 0.9))`, // Gold for links - lighter for dark theme\n active: `light-dark(oklch(${COLORS__PEARL[900]} / 0.8), oklch(${COLORS__PEARL[300]} / 0.9))`, // Gold for links - lighter for dark theme\n },\n success: `light-dark(oklch(${COLORS__GREEN[700]}), oklch(${COLORS__GREEN[300]}))`, // Darker vs lighter for contrast\n warning: `light-dark(oklch(${COLORS__YELLOW[700]}), oklch(${COLORS__YELLOW[300]}))`,\n error: `light-dark(oklch(${COLORS__RED[700]}), oklch(${COLORS__RED[300]}))`,\n info: `light-dark(oklch(${COLORS__BLUE[700]}), oklch(${COLORS__BLUE[300]}))`,\n inverse: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[950]}))`, // Light vs dark for inverse backgrounds\n disabled: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[500]}))`, // Same muted text for both\n },\n surface: {\n bg: {\n primary: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`, // Main background - lightest vs darkest\n secondary: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[800]}))`, // Cards, panels\n tertiary: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[700]}))`, // Elevated surfaces\n interactive: {\n default: `light-dark(transparent, transparent)`, // Interactive surface base\n hover: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[50]}) 30%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[800]}) 20%, transparent))`,\n active: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[100]}) 40%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[700]}) 30%, transparent))`,\n },\n success: `light-dark(color-mix(in oklch, oklch(${COLORS__GREEN[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__GREEN[900]}) 30%, transparent))`,\n warning: `light-dark(color-mix(in oklch, oklch(${COLORS__YELLOW[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__YELLOW[900]}) 30%, transparent))`,\n error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__RED[900]}) 30%, transparent))`,\n info: `light-dark(color-mix(in oklch, oklch(${COLORS__BLUE[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__BLUE[900]}) 30%, transparent))`,\n overlay: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 80%, transparent))`, // Dark overlay\n disabled: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[900]}))`,\n inverse: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`, // Dark vs light surface\n },\n },\n icon: {\n primary: `light-dark(oklch(${COLORS__PEARL[700]}), oklch(${COLORS__PEARL[200]}))`, // Matches text.secondary\n secondary: `light-dark(oklch(${COLORS__PEARL[600]}), oklch(${COLORS__PEARL[300]}))`, // Matches text.tertiary\n tertiary: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[400]}))`, // Subtle icons\n interactive: {\n default: `light-dark(oklch(${COLORS__GOLD[600]}), oklch(${COLORS__GOLD[400]}))`, // Gold for interactive icons\n hover: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[600]}) 90%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[400]}) 90%, transparent))`,\n active: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[600]}) 80%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[400]}) 80%, transparent))`,\n },\n success: `light-dark(oklch(${COLORS__GREEN[600]}), oklch(${COLORS__GREEN[400]}))`,\n warning: `light-dark(oklch(${COLORS__YELLOW[600]}), oklch(${COLORS__YELLOW[400]}))`,\n error: `light-dark(oklch(${COLORS__RED[600]}), oklch(${COLORS__RED[400]}))`,\n info: `light-dark(oklch(${COLORS__BLUE[600]}), oklch(${COLORS__BLUE[400]}))`,\n inverse: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[700]}))`, // Light vs dark icons for inverse backgrounds\n disabled: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,\n },\n input: {\n bg: {\n default: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`, // Matches primary vs secondary background\n hover: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[800]}))`,\n focus: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`, // Keep same as default\n disabled: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[900]}))`,\n error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[50]}) 30%, transparent), color-mix(in oklch, oklch(${COLORS__RED[900]}) 20%, transparent))`,\n },\n border: {\n default: `light-dark(oklch(${COLORS__PEARL[300]}), oklch(${COLORS__PEARL[700]}))`,\n hover: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,\n focus: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`, // Gold focus\n error: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,\n disabled: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[800]}))`,\n },\n text: {\n default: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`, // High contrast\n placeholder: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[500]}))`, // Same muted for both\n disabled: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,\n },\n },\n shadow: {\n default: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 15%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 40%, transparent))`,\n subtle: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 8%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 20%, transparent))`,\n strong: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 25%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 60%, transparent))`,\n interactive: `light-dark(oklch(${COLORS__GOLD[600]} / 0.4), oklch(${COLORS__GOLD[200]} / 0.4))`, // Same red for both\n destructive: `light-dark(oklch(${COLORS__RED[600]} / 0.4), oklch(${COLORS__RED[400]} / 0.4))`, // Same red for both\n focus: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[500]}) 25%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[700]}) 40%, transparent))`,\n success: `light-dark(color-mix(in oklch, oklch(${COLORS__GREEN[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__GREEN[800]}) 30%, transparent))`,\n warning: `light-dark(color-mix(in oklch, oklch(${COLORS__YELLOW[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__YELLOW[800]}) 30%, transparent))`,\n error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__RED[800]}) 30%, transparent))`,\n },\n },\n spacing: {\n 0: SPACING[0],\n px: SPACING.px,\n 0.5: SPACING[0.5],\n 1: SPACING[1],\n 1.5: SPACING[1.5],\n 2: SPACING[2],\n 2.5: SPACING[2.5],\n 3: SPACING[3],\n 3.5: SPACING[3.5],\n 4: SPACING[4],\n 5: SPACING[5],\n 6: SPACING[6],\n 7: SPACING[7],\n 8: SPACING[8],\n 9: SPACING[9],\n 10: SPACING[10],\n 11: SPACING[11],\n 12: SPACING[12],\n 14: SPACING[14],\n 16: SPACING[16],\n 20: SPACING[20],\n 24: SPACING[24],\n 28: SPACING[28],\n 32: SPACING[32],\n 36: SPACING[36],\n 40: SPACING[40],\n 44: SPACING[44],\n 48: SPACING[48],\n 52: SPACING[52],\n 56: SPACING[56],\n 60: SPACING[60],\n 64: SPACING[64],\n 72: SPACING[72],\n 80: SPACING[80],\n 96: SPACING[96],\n },\n borderRadius: {\n none: BORDER_RADIUS.none,\n sm: BORDER_RADIUS.sm,\n base: BORDER_RADIUS.base,\n md: BORDER_RADIUS.md,\n lg: BORDER_RADIUS.lg,\n xl: BORDER_RADIUS.xl,\n '2xl': BORDER_RADIUS['2xl'],\n '3xl': BORDER_RADIUS['3xl'],\n full: BORDER_RADIUS.full,\n },\n borderWidth: {\n 0: BORDER_WIDTH[0],\n 1: BORDER_WIDTH[1],\n 2: BORDER_WIDTH[2],\n 4: BORDER_WIDTH[4],\n 8: BORDER_WIDTH[8],\n },\n boxShadow: {\n none: BOX_SHADOW.none,\n sm: BOX_SHADOW.sm,\n base: BOX_SHADOW.base,\n md: BOX_SHADOW.md,\n lg: BOX_SHADOW.lg,\n xl: BOX_SHADOW.xl,\n '2xl': BOX_SHADOW['2xl'],\n inner: BOX_SHADOW.inner,\n },\n typography: {\n fontFamily: {\n base: FONT_FAMILY.sans.fallback,\n },\n display: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.extralight,\n fontSize: FONT_SIZE['7xl'],\n lineHeight: LINE_HEIGHT__TIGHT['7xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['7xl'],\n lineHeight: LINE_HEIGHT__TIGHT['7xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n bold: {\n fontWeight: FONT_WEIGHT.extrabold,\n fontSize: FONT_SIZE['7xl'],\n lineHeight: LINE_HEIGHT__TIGHT['7xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.extralight,\n fontSize: FONT_SIZE['6xl'],\n lineHeight: LINE_HEIGHT__TIGHT['6xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['6xl'],\n lineHeight: LINE_HEIGHT__TIGHT['6xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n bold: {\n fontWeight: FONT_WEIGHT.extrabold,\n fontSize: FONT_SIZE['6xl'],\n lineHeight: LINE_HEIGHT__TIGHT['6xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.extralight,\n fontSize: FONT_SIZE['5xl'],\n lineHeight: LINE_HEIGHT__TIGHT['5xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['5xl'],\n lineHeight: LINE_HEIGHT__TIGHT['5xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n bold: {\n fontWeight: FONT_WEIGHT.extrabold,\n fontSize: FONT_SIZE['5xl'],\n lineHeight: LINE_HEIGHT__TIGHT['5xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.extralight,\n fontSize: FONT_SIZE['4xl'],\n lineHeight: LINE_HEIGHT__TIGHT['4xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['4xl'],\n lineHeight: LINE_HEIGHT__TIGHT['4xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n bold: {\n fontWeight: FONT_WEIGHT.extrabold,\n fontSize: FONT_SIZE['4xl'],\n lineHeight: LINE_HEIGHT__TIGHT['4xl'],\n letterSpacing: LETTER_SPACING.tight,\n },\n },\n },\n heading: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE['3xl'],\n lineHeight: LINE_HEIGHT__TIGHT['3xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['3xl'],\n lineHeight: LINE_HEIGHT__TIGHT['3xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE['3xl'],\n lineHeight: LINE_HEIGHT__TIGHT['3xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE['2xl'],\n lineHeight: LINE_HEIGHT__TIGHT['2xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['2xl'],\n lineHeight: LINE_HEIGHT__TIGHT['2xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE['2xl'],\n lineHeight: LINE_HEIGHT__TIGHT['2xl'],\n letterSpacing: LETTER_SPACING.normal,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.xl,\n lineHeight: LINE_HEIGHT__TIGHT.xl,\n letterSpacing: LETTER_SPACING.normal,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.xl,\n lineHeight: LINE_HEIGHT__TIGHT.xl,\n letterSpacing: LETTER_SPACING.normal,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.xl,\n lineHeight: LINE_HEIGHT__TIGHT.xl,\n letterSpacing: LETTER_SPACING.normal,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.normal,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.normal,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.normal,\n },\n },\n },\n subheading: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__TIGHT.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__TIGHT.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__TIGHT.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__TIGHT.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wide,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wide,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wide,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.bold,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n },\n body: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__RELAXED.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__RELAXED.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.lg,\n lineHeight: LINE_HEIGHT__RELAXED.lg,\n letterSpacing: LETTER_SPACING.wide,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__RELAXED.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__RELAXED.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.base,\n lineHeight: LINE_HEIGHT__RELAXED.base,\n letterSpacing: LETTER_SPACING.wide,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.light,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n },\n caption: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n },\n },\n label: {\n xl: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.sm,\n lineHeight: LINE_HEIGHT__RELAXED.sm,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n lg: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE.xs,\n lineHeight: LINE_HEIGHT__RELAXED.xs,\n letterSpacing: LETTER_SPACING.wider,\n },\n },\n md: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE['2xs'],\n lineHeight: LINE_HEIGHT__RELAXED['2xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n },\n sm: {\n light: {\n fontWeight: FONT_WEIGHT.normal,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n medium: {\n fontWeight: FONT_WEIGHT.medium,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n bold: {\n fontWeight: FONT_WEIGHT.semibold,\n fontSize: FONT_SIZE['3xs'],\n lineHeight: LINE_HEIGHT__RELAXED['3xs'],\n letterSpacing: LETTER_SPACING.widest,\n },\n },\n },\n },\n});\n\nconst regalTheme = style([\n regalThemeVars,\n { colorScheme: 'light dark', fontFamily: themeContract.typography.fontFamily.base },\n]);\n\nexport { regalTheme };\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"color-scheme.css.d.ts","names":[],"sources":["../../../src/themes/styles/color-scheme.css.ts"],"sourcesContent":[],"mappings":";cAEM;cAIA,eAFJ,EAAA,MAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { style } from "@vanilla-extract/css";
|
|
2
|
+
|
|
3
|
+
//#region src/themes/styles/color-scheme.css.ts
|
|
4
|
+
const lightColorScheme = style({ colorScheme: "light" });
|
|
5
|
+
const darkColorScheme = style({ colorScheme: "dark" });
|
|
6
|
+
|
|
7
|
+
//#endregion
|
|
8
|
+
export { darkColorScheme, lightColorScheme };
|
|
9
|
+
//# sourceMappingURL=color-scheme.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"color-scheme.css.js","names":[],"sources":["../../../src/themes/styles/color-scheme.css.ts"],"sourcesContent":["import { style } from '@vanilla-extract/css';\n\nconst lightColorScheme = style({\n colorScheme: 'light',\n});\n\nconst darkColorScheme = style({\n colorScheme: 'dark',\n});\n\nexport { lightColorScheme, darkColorScheme };\n"],"mappings":";;;AAEA,MAAM,mBAAmB,MAAM,EAC7B,aAAa,SACd,CAAC;AAEF,MAAM,kBAAkB,MAAM,EAC5B,aAAa,QACd,CAAC"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { CSSProperties, StyleRule } from "@vanilla-extract/css";
|
|
2
|
+
|
|
3
|
+
//#region src/themes/styles/utilities.d.ts
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Helper function to create a motion-safe style object with custom CSS properties.
|
|
7
|
+
* Returns a style object that wraps the provided styles in a `prefers-reduced-motion: no-preference` media query,
|
|
8
|
+
* ensuring animations only run when users haven't requested reduced motion.
|
|
9
|
+
*
|
|
10
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
11
|
+
*
|
|
12
|
+
* @param styles - CSS properties object (e.g., { transition: 'opacity 0.3s ease', transform: 'scale(1.1)' })
|
|
13
|
+
* @returns A style object that applies the CSS properties only when motion is preferred
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* import { style } from '@vanilla-extract/css';
|
|
17
|
+
* import { withSafeTransition } from './utilities.css.ts';
|
|
18
|
+
*
|
|
19
|
+
* const fadeTransition = style([
|
|
20
|
+
* withSafeTransition({
|
|
21
|
+
* transition: 'transform 0.2s ease-out, opacity 0.2s ease-out',
|
|
22
|
+
* transform: 'translateY(0)'
|
|
23
|
+
* }),
|
|
24
|
+
* {
|
|
25
|
+
* // Additional styles can be added here
|
|
26
|
+
* padding: '16px'
|
|
27
|
+
* }
|
|
28
|
+
* ]);
|
|
29
|
+
*/
|
|
30
|
+
declare const withSafeTransition: (styles: StyleRule) => StyleRule;
|
|
31
|
+
/**
|
|
32
|
+
* Helper function to create a custom focus outline style object.
|
|
33
|
+
* Returns a style object with focus-visible outline that follows the design system's outline pattern.
|
|
34
|
+
* Supports an optional selector parameter for targeting specific pseudo-selectors or child elements.
|
|
35
|
+
*
|
|
36
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
37
|
+
*
|
|
38
|
+
* @param outlineColor - The color for the focus outline (e.g., '#0066cc', 'rgb(255, 0, 0)', CSS custom properties)
|
|
39
|
+
* @param selector - Optional selector prefix for the focus-visible state (e.g., '&', '& > button', defaults to '')
|
|
40
|
+
* @returns A style object with custom focus outline styling that uses dynamic selector keys
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* import { style } from '@vanilla-extract/css';
|
|
44
|
+
* import { recipe } from '@vanilla-extract/recipes';
|
|
45
|
+
* import { withCustomOutline } from './utilities.css.ts';
|
|
46
|
+
*
|
|
47
|
+
* const redOutlineButton = style([
|
|
48
|
+
* withCustomOutline('#ff0000'),
|
|
49
|
+
* {
|
|
50
|
+
* padding: '8px 16px',
|
|
51
|
+
* background: 'white'
|
|
52
|
+
* }
|
|
53
|
+
* ]);
|
|
54
|
+
*
|
|
55
|
+
* // Example with custom selector
|
|
56
|
+
* const parentWithFocusableChild = style([
|
|
57
|
+
* withCustomOutline('#0066cc', '& > button'),
|
|
58
|
+
* {
|
|
59
|
+
* padding: '12px'
|
|
60
|
+
* }
|
|
61
|
+
* ]);
|
|
62
|
+
*
|
|
63
|
+
* const buttonVariants = recipe({
|
|
64
|
+
* base: [
|
|
65
|
+
* withCustomOutline(themeContract.colors.shadow.interactive),
|
|
66
|
+
* {
|
|
67
|
+
* // other base styles
|
|
68
|
+
* padding: '12px 24px'
|
|
69
|
+
* }
|
|
70
|
+
* ],
|
|
71
|
+
* variants: {
|
|
72
|
+
* // variant styles
|
|
73
|
+
* }
|
|
74
|
+
* });
|
|
75
|
+
*/
|
|
76
|
+
declare const withCustomOutline: (outlineColor: string, selector?: string) => Record<`${string}:focus-visible`, CSSProperties>;
|
|
77
|
+
/**
|
|
78
|
+
* Helper function to create a responsive style object with breakpoint media queries.
|
|
79
|
+
* Returns a style object that applies the provided styles only when the viewport width
|
|
80
|
+
* meets or exceeds the specified breakpoint value.
|
|
81
|
+
*
|
|
82
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
83
|
+
*
|
|
84
|
+
* @param breakpoint - The minimum viewport width for the media query (e.g., '768px', '1024px', '48rem')
|
|
85
|
+
* @param styles - CSS properties object to apply at the breakpoint (e.g., { fontSize: '1.5rem', padding: '24px' })
|
|
86
|
+
* @returns A style object that applies the CSS properties only when the viewport width meets the breakpoint
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* import { style } from '@vanilla-extract/css';
|
|
90
|
+
* import { recipe } from '@vanilla-extract/recipes';
|
|
91
|
+
* import { withBreakpoint } from './utilities.css.ts';
|
|
92
|
+
*
|
|
93
|
+
* const responsiveText = style([
|
|
94
|
+
* withBreakpoint('768px', {
|
|
95
|
+
* fontSize: '1.5rem',
|
|
96
|
+
* lineHeight: '1.4'
|
|
97
|
+
* }),
|
|
98
|
+
* {
|
|
99
|
+
* // Base styles
|
|
100
|
+
* fontSize: '1rem',
|
|
101
|
+
* lineHeight: '1.6'
|
|
102
|
+
* }
|
|
103
|
+
* ]);
|
|
104
|
+
*
|
|
105
|
+
* const cardVariants = recipe({
|
|
106
|
+
* base: [
|
|
107
|
+
* withBreakpoint('1024px', {
|
|
108
|
+
* padding: '32px',
|
|
109
|
+
* maxWidth: '800px'
|
|
110
|
+
* }),
|
|
111
|
+
* {
|
|
112
|
+
* // base styles
|
|
113
|
+
* padding: '16px',
|
|
114
|
+
* maxWidth: '100%'
|
|
115
|
+
* }
|
|
116
|
+
* ],
|
|
117
|
+
* variants: {
|
|
118
|
+
* // variant styles
|
|
119
|
+
* }
|
|
120
|
+
* });
|
|
121
|
+
*/
|
|
122
|
+
declare const withBreakpoint: (breakpoint: string, styles: CSSProperties) => StyleRule;
|
|
123
|
+
//#endregion
|
|
124
|
+
export { withBreakpoint, withCustomOutline, withSafeTransition };
|
|
125
|
+
//# sourceMappingURL=utilities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utilities.d.ts","names":[],"sources":["../../../src/themes/styles/utilities.ts"],"sourcesContent":[],"mappings":";;;;;;AAA0E;;;;;AAiCxE;;;;;AA+CqE;;;;;;;;;;;;;cAnDjE,6BAA8B,cAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmD1C,gEAA2D,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqD7F,6CAA8C,kBAAgB"}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { COLORS__PURE } from "../tokens/primitives/colors.js";
|
|
2
|
+
|
|
3
|
+
//#region src/themes/styles/utilities.ts
|
|
4
|
+
/**
|
|
5
|
+
* Helper function to create a motion-safe style object with custom CSS properties.
|
|
6
|
+
* Returns a style object that wraps the provided styles in a `prefers-reduced-motion: no-preference` media query,
|
|
7
|
+
* ensuring animations only run when users haven't requested reduced motion.
|
|
8
|
+
*
|
|
9
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
10
|
+
*
|
|
11
|
+
* @param styles - CSS properties object (e.g., { transition: 'opacity 0.3s ease', transform: 'scale(1.1)' })
|
|
12
|
+
* @returns A style object that applies the CSS properties only when motion is preferred
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* import { style } from '@vanilla-extract/css';
|
|
16
|
+
* import { withSafeTransition } from './utilities.css.ts';
|
|
17
|
+
*
|
|
18
|
+
* const fadeTransition = style([
|
|
19
|
+
* withSafeTransition({
|
|
20
|
+
* transition: 'transform 0.2s ease-out, opacity 0.2s ease-out',
|
|
21
|
+
* transform: 'translateY(0)'
|
|
22
|
+
* }),
|
|
23
|
+
* {
|
|
24
|
+
* // Additional styles can be added here
|
|
25
|
+
* padding: '16px'
|
|
26
|
+
* }
|
|
27
|
+
* ]);
|
|
28
|
+
*/
|
|
29
|
+
const withSafeTransition = (styles) => ({ "@media": { "(prefers-reduced-motion: no-preference)": styles } });
|
|
30
|
+
/**
|
|
31
|
+
* Helper function to create a custom focus outline style object.
|
|
32
|
+
* Returns a style object with focus-visible outline that follows the design system's outline pattern.
|
|
33
|
+
* Supports an optional selector parameter for targeting specific pseudo-selectors or child elements.
|
|
34
|
+
*
|
|
35
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
36
|
+
*
|
|
37
|
+
* @param outlineColor - The color for the focus outline (e.g., '#0066cc', 'rgb(255, 0, 0)', CSS custom properties)
|
|
38
|
+
* @param selector - Optional selector prefix for the focus-visible state (e.g., '&', '& > button', defaults to '')
|
|
39
|
+
* @returns A style object with custom focus outline styling that uses dynamic selector keys
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* import { style } from '@vanilla-extract/css';
|
|
43
|
+
* import { recipe } from '@vanilla-extract/recipes';
|
|
44
|
+
* import { withCustomOutline } from './utilities.css.ts';
|
|
45
|
+
*
|
|
46
|
+
* const redOutlineButton = style([
|
|
47
|
+
* withCustomOutline('#ff0000'),
|
|
48
|
+
* {
|
|
49
|
+
* padding: '8px 16px',
|
|
50
|
+
* background: 'white'
|
|
51
|
+
* }
|
|
52
|
+
* ]);
|
|
53
|
+
*
|
|
54
|
+
* // Example with custom selector
|
|
55
|
+
* const parentWithFocusableChild = style([
|
|
56
|
+
* withCustomOutline('#0066cc', '& > button'),
|
|
57
|
+
* {
|
|
58
|
+
* padding: '12px'
|
|
59
|
+
* }
|
|
60
|
+
* ]);
|
|
61
|
+
*
|
|
62
|
+
* const buttonVariants = recipe({
|
|
63
|
+
* base: [
|
|
64
|
+
* withCustomOutline(themeContract.colors.shadow.interactive),
|
|
65
|
+
* {
|
|
66
|
+
* // other base styles
|
|
67
|
+
* padding: '12px 24px'
|
|
68
|
+
* }
|
|
69
|
+
* ],
|
|
70
|
+
* variants: {
|
|
71
|
+
* // variant styles
|
|
72
|
+
* }
|
|
73
|
+
* });
|
|
74
|
+
*/
|
|
75
|
+
const withCustomOutline = (outlineColor, selector = "") => ({ [`${selector}:focus-visible`]: {
|
|
76
|
+
boxShadow: `0px 0px 0px 0px, ${COLORS__PURE.transparent} 0px 0px 0px 0px, ${COLORS__PURE.transparent} 0px 0px 0px 0px, ${outlineColor} 0px 0px 0px 3px, ${outlineColor} 0px 1px 2px 0px`,
|
|
77
|
+
outline: "2px solid transparent",
|
|
78
|
+
outlineOffset: "2px"
|
|
79
|
+
} });
|
|
80
|
+
/**
|
|
81
|
+
* Helper function to create a responsive style object with breakpoint media queries.
|
|
82
|
+
* Returns a style object that applies the provided styles only when the viewport width
|
|
83
|
+
* meets or exceeds the specified breakpoint value.
|
|
84
|
+
*
|
|
85
|
+
* This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.
|
|
86
|
+
*
|
|
87
|
+
* @param breakpoint - The minimum viewport width for the media query (e.g., '768px', '1024px', '48rem')
|
|
88
|
+
* @param styles - CSS properties object to apply at the breakpoint (e.g., { fontSize: '1.5rem', padding: '24px' })
|
|
89
|
+
* @returns A style object that applies the CSS properties only when the viewport width meets the breakpoint
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* import { style } from '@vanilla-extract/css';
|
|
93
|
+
* import { recipe } from '@vanilla-extract/recipes';
|
|
94
|
+
* import { withBreakpoint } from './utilities.css.ts';
|
|
95
|
+
*
|
|
96
|
+
* const responsiveText = style([
|
|
97
|
+
* withBreakpoint('768px', {
|
|
98
|
+
* fontSize: '1.5rem',
|
|
99
|
+
* lineHeight: '1.4'
|
|
100
|
+
* }),
|
|
101
|
+
* {
|
|
102
|
+
* // Base styles
|
|
103
|
+
* fontSize: '1rem',
|
|
104
|
+
* lineHeight: '1.6'
|
|
105
|
+
* }
|
|
106
|
+
* ]);
|
|
107
|
+
*
|
|
108
|
+
* const cardVariants = recipe({
|
|
109
|
+
* base: [
|
|
110
|
+
* withBreakpoint('1024px', {
|
|
111
|
+
* padding: '32px',
|
|
112
|
+
* maxWidth: '800px'
|
|
113
|
+
* }),
|
|
114
|
+
* {
|
|
115
|
+
* // base styles
|
|
116
|
+
* padding: '16px',
|
|
117
|
+
* maxWidth: '100%'
|
|
118
|
+
* }
|
|
119
|
+
* ],
|
|
120
|
+
* variants: {
|
|
121
|
+
* // variant styles
|
|
122
|
+
* }
|
|
123
|
+
* });
|
|
124
|
+
*/
|
|
125
|
+
const withBreakpoint = (breakpoint, styles) => ({ "@media": { [`(min-width: ${breakpoint})`]: styles } });
|
|
126
|
+
|
|
127
|
+
//#endregion
|
|
128
|
+
export { withBreakpoint, withCustomOutline, withSafeTransition };
|
|
129
|
+
//# sourceMappingURL=utilities.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utilities.js","names":[],"sources":["../../../src/themes/styles/utilities.ts"],"sourcesContent":["import { type CSSProperties, type StyleRule } from '@vanilla-extract/css';\n\nimport { COLORS__PURE } from '../tokens/primitives/colors.js';\n\n/**\n * Helper function to create a motion-safe style object with custom CSS properties.\n * Returns a style object that wraps the provided styles in a `prefers-reduced-motion: no-preference` media query,\n * ensuring animations only run when users haven't requested reduced motion.\n *\n * This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.\n *\n * @param styles - CSS properties object (e.g., { transition: 'opacity 0.3s ease', transform: 'scale(1.1)' })\n * @returns A style object that applies the CSS properties only when motion is preferred\n *\n * @example\n * import { style } from '@vanilla-extract/css';\n * import { withSafeTransition } from './utilities.css.ts';\n *\n * const fadeTransition = style([\n * withSafeTransition({\n * transition: 'transform 0.2s ease-out, opacity 0.2s ease-out',\n * transform: 'translateY(0)'\n * }),\n * {\n * // Additional styles can be added here\n * padding: '16px'\n * }\n * ]);\n */\nconst withSafeTransition = (styles: StyleRule): StyleRule => ({\n '@media': {\n '(prefers-reduced-motion: no-preference)': styles,\n },\n});\n\n/**\n * Helper function to create a custom focus outline style object.\n * Returns a style object with focus-visible outline that follows the design system's outline pattern.\n * Supports an optional selector parameter for targeting specific pseudo-selectors or child elements.\n *\n * This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.\n *\n * @param outlineColor - The color for the focus outline (e.g., '#0066cc', 'rgb(255, 0, 0)', CSS custom properties)\n * @param selector - Optional selector prefix for the focus-visible state (e.g., '&', '& > button', defaults to '')\n * @returns A style object with custom focus outline styling that uses dynamic selector keys\n *\n * @example\n * import { style } from '@vanilla-extract/css';\n * import { recipe } from '@vanilla-extract/recipes';\n * import { withCustomOutline } from './utilities.css.ts';\n *\n * const redOutlineButton = style([\n * withCustomOutline('#ff0000'),\n * {\n * padding: '8px 16px',\n * background: 'white'\n * }\n * ]);\n *\n * // Example with custom selector\n * const parentWithFocusableChild = style([\n * withCustomOutline('#0066cc', '& > button'),\n * {\n * padding: '12px'\n * }\n * ]);\n *\n * const buttonVariants = recipe({\n * base: [\n * withCustomOutline(themeContract.colors.shadow.interactive),\n * {\n * // other base styles\n * padding: '12px 24px'\n * }\n * ],\n * variants: {\n * // variant styles\n * }\n * });\n */\nconst withCustomOutline = (outlineColor: string, selector = ''): Record<`${string}:focus-visible`, CSSProperties> => ({\n [`${selector}:focus-visible`]: {\n boxShadow: `0px 0px 0px 0px, ${COLORS__PURE.transparent} 0px 0px 0px 0px, ${COLORS__PURE.transparent} 0px 0px 0px 0px, ${outlineColor} 0px 0px 0px 3px, ${outlineColor} 0px 1px 2px 0px`,\n outline: '2px solid transparent',\n outlineOffset: '2px',\n },\n});\n\n/**\n * Helper function to create a responsive style object with breakpoint media queries.\n * Returns a style object that applies the provided styles only when the viewport width\n * meets or exceeds the specified breakpoint value.\n *\n * This function returns a style object that must be used with vanilla-extract's `style()` function or `recipe()` function.\n *\n * @param breakpoint - The minimum viewport width for the media query (e.g., '768px', '1024px', '48rem')\n * @param styles - CSS properties object to apply at the breakpoint (e.g., { fontSize: '1.5rem', padding: '24px' })\n * @returns A style object that applies the CSS properties only when the viewport width meets the breakpoint\n *\n * @example\n * import { style } from '@vanilla-extract/css';\n * import { recipe } from '@vanilla-extract/recipes';\n * import { withBreakpoint } from './utilities.css.ts';\n *\n * const responsiveText = style([\n * withBreakpoint('768px', {\n * fontSize: '1.5rem',\n * lineHeight: '1.4'\n * }),\n * {\n * // Base styles\n * fontSize: '1rem',\n * lineHeight: '1.6'\n * }\n * ]);\n *\n * const cardVariants = recipe({\n * base: [\n * withBreakpoint('1024px', {\n * padding: '32px',\n * maxWidth: '800px'\n * }),\n * {\n * // base styles\n * padding: '16px',\n * maxWidth: '100%'\n * }\n * ],\n * variants: {\n * // variant styles\n * }\n * });\n */\nconst withBreakpoint = (breakpoint: string, styles: CSSProperties): StyleRule => ({\n '@media': {\n [`(min-width: ${breakpoint})`]: styles,\n },\n});\n\nexport { withSafeTransition, withCustomOutline, withBreakpoint };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,sBAAsB,YAAkC,EAC5D,UAAU,EACR,2CAA2C,QAC5C,EACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+CD,MAAM,qBAAqB,cAAsB,WAAW,QAA0D,GACnH,GAAG,SAAS,kBAAkB;CAC7B,WAAW,oBAAoB,aAAa,YAAY,oBAAoB,aAAa,YAAY,oBAAoB,aAAa,oBAAoB,aAAa;CACvK,SAAS;CACT,eAAe;CAChB,EACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+CD,MAAM,kBAAkB,YAAoB,YAAsC,EAChF,UAAU,GACP,eAAe,WAAW,KAAK,QACjC,EACF"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//#region src/themes/tokens/primitives/borders.d.ts
|
|
2
|
+
declare const BORDER_RADIUS: {
|
|
3
|
+
readonly none: "0";
|
|
4
|
+
readonly sm: "0.125rem";
|
|
5
|
+
readonly base: "0.25rem";
|
|
6
|
+
readonly md: "0.375rem";
|
|
7
|
+
readonly lg: "0.5rem";
|
|
8
|
+
readonly xl: "0.75rem";
|
|
9
|
+
readonly '2xl': "1rem";
|
|
10
|
+
readonly '3xl': "1.5rem";
|
|
11
|
+
readonly full: "9999px";
|
|
12
|
+
};
|
|
13
|
+
declare const BORDER_WIDTH: {
|
|
14
|
+
readonly 0: "0";
|
|
15
|
+
readonly 1: "1px";
|
|
16
|
+
readonly 2: "2px";
|
|
17
|
+
readonly 4: "4px";
|
|
18
|
+
readonly 8: "8px";
|
|
19
|
+
};
|
|
20
|
+
//#endregion
|
|
21
|
+
export { BORDER_RADIUS, BORDER_WIDTH };
|
|
22
|
+
//# sourceMappingURL=borders.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"borders.d.ts","names":[],"sources":["../../../../src/themes/tokens/primitives/borders.ts"],"sourcesContent":[],"mappings":";cAAM;EAAA,SAAA,IAAA,EAAA,GAUI;EAEJ,SAAA,EAAA,EAAA,UAMI;;;;;;;;;cANJ"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
//#region src/themes/tokens/primitives/borders.ts
|
|
2
|
+
const BORDER_RADIUS = {
|
|
3
|
+
none: "0",
|
|
4
|
+
sm: "0.125rem",
|
|
5
|
+
base: "0.25rem",
|
|
6
|
+
md: "0.375rem",
|
|
7
|
+
lg: "0.5rem",
|
|
8
|
+
xl: "0.75rem",
|
|
9
|
+
"2xl": "1rem",
|
|
10
|
+
"3xl": "1.5rem",
|
|
11
|
+
full: "9999px"
|
|
12
|
+
};
|
|
13
|
+
const BORDER_WIDTH = {
|
|
14
|
+
0: "0",
|
|
15
|
+
1: "1px",
|
|
16
|
+
2: "2px",
|
|
17
|
+
4: "4px",
|
|
18
|
+
8: "8px"
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
//#endregion
|
|
22
|
+
export { BORDER_RADIUS, BORDER_WIDTH };
|
|
23
|
+
//# sourceMappingURL=borders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"borders.js","names":[],"sources":["../../../../src/themes/tokens/primitives/borders.ts"],"sourcesContent":["const BORDER_RADIUS = {\n none: '0',\n sm: '0.125rem', // 2px\n base: '0.25rem', // 4px\n md: '0.375rem', // 6px\n lg: '0.5rem', // 8px\n xl: '0.75rem', // 12px\n '2xl': '1rem', // 16px\n '3xl': '1.5rem', // 24px\n full: '9999px',\n} as const;\n\nconst BORDER_WIDTH = {\n 0: '0',\n 1: '1px',\n 2: '2px',\n 4: '4px',\n 8: '8px',\n} as const;\n\nexport { BORDER_WIDTH, BORDER_RADIUS };\n"],"mappings":";AAAA,MAAM,gBAAgB;CACpB,MAAM;CACN,IAAI;CACJ,MAAM;CACN,IAAI;CACJ,IAAI;CACJ,IAAI;CACJ,OAAO;CACP,OAAO;CACP,MAAM;CACP;AAED,MAAM,eAAe;CACnB,GAAG;CACH,GAAG;CACH,GAAG;CACH,GAAG;CACH,GAAG;CACJ"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
//#region src/themes/tokens/primitives/colors.d.ts
|
|
2
|
+
declare const COLORS__PURE: {
|
|
3
|
+
readonly white: "1 0 0";
|
|
4
|
+
readonly black: "0 0 0";
|
|
5
|
+
readonly transparent: "transparent";
|
|
6
|
+
};
|
|
7
|
+
declare const COLORS__STONE: {
|
|
8
|
+
readonly 50: "0.98 0.005 50";
|
|
9
|
+
readonly 100: "0.92 0.010 50";
|
|
10
|
+
readonly 200: "0.85 0.014 50";
|
|
11
|
+
readonly 300: "0.75 0.018 50";
|
|
12
|
+
readonly 400: "0.65 0.022 50";
|
|
13
|
+
readonly 500: "0.55 0.024 50";
|
|
14
|
+
readonly 600: "0.45 0.022 50";
|
|
15
|
+
readonly 700: "0.35 0.018 50";
|
|
16
|
+
readonly 800: "0.25 0.014 50";
|
|
17
|
+
readonly 900: "0.18 0.010 50";
|
|
18
|
+
readonly 950: "0.12 0.006 50";
|
|
19
|
+
};
|
|
20
|
+
declare const COLORS__RED: {
|
|
21
|
+
readonly 50: "0.98 0.02 20";
|
|
22
|
+
readonly 100: "0.92 0.05 20";
|
|
23
|
+
readonly 200: "0.85 0.10 20";
|
|
24
|
+
readonly 300: "0.75 0.16 20";
|
|
25
|
+
readonly 400: "0.65 0.23 20";
|
|
26
|
+
readonly 500: "0.55 0.26 20";
|
|
27
|
+
readonly 600: "0.45 0.24 20";
|
|
28
|
+
readonly 700: "0.35 0.21 20";
|
|
29
|
+
readonly 800: "0.25 0.17 20";
|
|
30
|
+
readonly 900: "0.18 0.12 20";
|
|
31
|
+
readonly 950: "0.12 0.08 20";
|
|
32
|
+
};
|
|
33
|
+
declare const COLORS__GREEN: {
|
|
34
|
+
readonly 50: "0.98 0.02 140";
|
|
35
|
+
readonly 100: "0.92 0.05 140";
|
|
36
|
+
readonly 200: "0.85 0.10 140";
|
|
37
|
+
readonly 300: "0.75 0.15 140";
|
|
38
|
+
readonly 400: "0.65 0.22 140";
|
|
39
|
+
readonly 500: "0.55 0.25 140";
|
|
40
|
+
readonly 600: "0.45 0.23 140";
|
|
41
|
+
readonly 700: "0.35 0.20 140";
|
|
42
|
+
readonly 800: "0.25 0.16 140";
|
|
43
|
+
readonly 900: "0.18 0.12 140";
|
|
44
|
+
readonly 950: "0.12 0.08 140";
|
|
45
|
+
};
|
|
46
|
+
declare const COLORS__GOLD: {
|
|
47
|
+
readonly 50: "0.98 0.025 84.44";
|
|
48
|
+
readonly 100: "0.94 0.05 84.44";
|
|
49
|
+
readonly 200: "0.88 0.09 84.44";
|
|
50
|
+
readonly 300: "0.82 0.13 84.44";
|
|
51
|
+
readonly 400: "0.78 0.155 84.44";
|
|
52
|
+
readonly 500: "0.7446 0.161 84.44";
|
|
53
|
+
readonly 600: "0.65 0.155 84.44";
|
|
54
|
+
readonly 700: "0.52 0.14 84.44";
|
|
55
|
+
readonly 800: "0.38 0.11 84.44";
|
|
56
|
+
readonly 900: "0.26 0.08 84.44";
|
|
57
|
+
readonly 950: "0.17 0.05 84.44";
|
|
58
|
+
};
|
|
59
|
+
declare const COLORS__PEARL: {
|
|
60
|
+
readonly 50: "0.995 0.002 260";
|
|
61
|
+
readonly 100: "0.955 0.004 260";
|
|
62
|
+
readonly 200: "0.90 0.006 260";
|
|
63
|
+
readonly 300: "0.80 0.008 260";
|
|
64
|
+
readonly 400: "0.72 0.010 260";
|
|
65
|
+
readonly 500: "0.68 0.012 260";
|
|
66
|
+
readonly 600: "0.50 0.013 260";
|
|
67
|
+
readonly 700: "0.40 0.014 260";
|
|
68
|
+
readonly 800: "0.38 0.013 260";
|
|
69
|
+
readonly 900: "0.25 0.011 260";
|
|
70
|
+
readonly 950: "0.15 0.009 260";
|
|
71
|
+
};
|
|
72
|
+
declare const COLORS__YELLOW: {
|
|
73
|
+
readonly 50: "0.98 0.03 91.6";
|
|
74
|
+
readonly 100: "0.94 0.05 91.6";
|
|
75
|
+
readonly 200: "0.89 0.08 91.6";
|
|
76
|
+
readonly 300: "0.86 0.12 91.6";
|
|
77
|
+
readonly 400: "0.84 0.16 91.6";
|
|
78
|
+
readonly 500: "0.831 0.1805 91.6";
|
|
79
|
+
readonly 600: "0.75 0.17 91.6";
|
|
80
|
+
readonly 700: "0.65 0.15 91.6";
|
|
81
|
+
readonly 800: "0.52 0.12 91.6";
|
|
82
|
+
readonly 900: "0.38 0.09 91.6";
|
|
83
|
+
readonly 950: "0.26 0.06 91.6";
|
|
84
|
+
};
|
|
85
|
+
declare const COLORS__BLUE: {
|
|
86
|
+
readonly 50: "0.95 0.03 246.61";
|
|
87
|
+
readonly 100: "0.90 0.06 246.61";
|
|
88
|
+
readonly 200: "0.83 0.12 246.61";
|
|
89
|
+
readonly 300: "0.75 0.16 246.61";
|
|
90
|
+
readonly 400: "0.68 0.18 246.61";
|
|
91
|
+
readonly 500: "0.6079 0.1983 246.61";
|
|
92
|
+
readonly 600: "0.52 0.18 246.61";
|
|
93
|
+
readonly 700: "0.42 0.15 246.61";
|
|
94
|
+
readonly 800: "0.32 0.12 246.61";
|
|
95
|
+
readonly 900: "0.22 0.08 246.61";
|
|
96
|
+
readonly 950: "0.15 0.05 246.61";
|
|
97
|
+
};
|
|
98
|
+
//#endregion
|
|
99
|
+
export { COLORS__BLUE, COLORS__GOLD, COLORS__GREEN, COLORS__PEARL, COLORS__PURE, COLORS__RED, COLORS__STONE, COLORS__YELLOW };
|
|
100
|
+
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","names":[],"sources":["../../../../src/themes/tokens/primitives/colors.ts"],"sourcesContent":[],"mappings":";cAAM;EAAA,SAAA,KAAA,EAII,OAAA;EAEJ,SAAA,KAAA,EAYI,OAAA;EAEJ,SAAA,WAYI,EAAA,aAAA;AAAA,CAAA;AAcA,cAxCJ,aAsDI,EAAA;EAEJ,SAAA,EAAA,EAAA,eAYI;EAEJ,SAAA,GAAA,EAAA,eAYI;EAEJ,SAAA,GAAA,EAAA,eAYI;;;;;;;;;;cAlFJ;;;;;;;;;;;;;cAcA;;;;;;;;;;;;;cAcA;;;;;;;;;;;;;cAcA;;;;;;;;;;;;;cAcA;;;;;;;;;;;;;cAcA"}
|