|
| 1 | +import { themeToVar } from '@toeverything/theme/v2'; |
| 2 | +import { z } from 'zod'; |
| 3 | + |
| 4 | +import { createEnumMap } from '../utils/enum.js'; |
| 5 | + |
| 6 | +export const Transparent = 'transparent'; |
| 7 | +export const White = themeToVar('edgeless/palette/white'); |
| 8 | +export const Black = themeToVar('edgeless/palette/black'); |
| 9 | + |
| 10 | +export const Light = { |
| 11 | + Red: themeToVar('edgeless/palette/light/redLight'), |
| 12 | + Orange: themeToVar('edgeless/palette/light/orangeLight'), |
| 13 | + Yellow: themeToVar('edgeless/palette/light/yellowLight'), |
| 14 | + Green: themeToVar('edgeless/palette/light/greenLight'), |
| 15 | + Blue: themeToVar('edgeless/palette/light/blueLight'), |
| 16 | + Purple: themeToVar('edgeless/palette/light/purpleLight'), |
| 17 | + Magenta: themeToVar('edgeless/palette/light/magentaLight'), |
| 18 | + Grey: themeToVar('edgeless/palette/light/greyLight'), |
| 19 | +} as const; |
| 20 | + |
| 21 | +export const LIGHT_PALETTES = [ |
| 22 | + Light.Red, |
| 23 | + Light.Orange, |
| 24 | + Light.Yellow, |
| 25 | + Light.Green, |
| 26 | + Light.Blue, |
| 27 | + Light.Purple, |
| 28 | + Light.Magenta, |
| 29 | + Light.Grey, |
| 30 | +] as const; |
| 31 | + |
| 32 | +export const Medium = { |
| 33 | + Red: themeToVar('edgeless/palette/medium/redMedium'), |
| 34 | + Orange: themeToVar('edgeless/palette/medium/orangeMedium'), |
| 35 | + Yellow: themeToVar('edgeless/palette/medium/yellowMedium'), |
| 36 | + Green: themeToVar('edgeless/palette/medium/greenMedium'), |
| 37 | + Blue: themeToVar('edgeless/palette/medium/blueMedium'), |
| 38 | + Purple: themeToVar('edgeless/palette/medium/purpleMedium'), |
| 39 | + Magenta: themeToVar('edgeless/palette/medium/magentaMedium'), |
| 40 | + Grey: themeToVar('edgeless/palette/medium/greyMedium'), |
| 41 | +} as const; |
| 42 | + |
| 43 | +export const MEDIUM_PALETTES = [ |
| 44 | + Medium.Red, |
| 45 | + Medium.Orange, |
| 46 | + Medium.Yellow, |
| 47 | + Medium.Green, |
| 48 | + Medium.Blue, |
| 49 | + Medium.Purple, |
| 50 | + Medium.Magenta, |
| 51 | + Medium.Grey, |
| 52 | +] as const; |
| 53 | + |
| 54 | +export const Heavy = { |
| 55 | + Red: themeToVar('edgeless/palette/heavy/red'), |
| 56 | + Orange: themeToVar('edgeless/palette/heavy/orange'), |
| 57 | + Yellow: themeToVar('edgeless/palette/heavy/yellow'), |
| 58 | + Green: themeToVar('edgeless/palette/heavy/green'), |
| 59 | + Blue: themeToVar('edgeless/palette/heavy/blue'), |
| 60 | + Purple: themeToVar('edgeless/palette/heavy/purple'), |
| 61 | + Magenta: themeToVar('edgeless/palette/heavy/magenta'), |
| 62 | +} as const; |
| 63 | + |
| 64 | +export const HEAVY_PALETTES = [ |
| 65 | + Heavy.Red, |
| 66 | + Heavy.Orange, |
| 67 | + Heavy.Yellow, |
| 68 | + Heavy.Green, |
| 69 | + Heavy.Blue, |
| 70 | + Heavy.Purple, |
| 71 | + Heavy.Magenta, |
| 72 | +] as const; |
| 73 | + |
| 74 | +export const PALETTES = [ |
| 75 | + // Light |
| 76 | + ...LIGHT_PALETTES, |
| 77 | + |
| 78 | + Transparent, |
| 79 | + |
| 80 | + // Medium |
| 81 | + ...MEDIUM_PALETTES, |
| 82 | + |
| 83 | + White, |
| 84 | + |
| 85 | + // Heavy |
| 86 | + ...HEAVY_PALETTES, |
| 87 | + |
| 88 | + Black, |
| 89 | +] as const; |
| 90 | + |
| 91 | +export const PaletteEnum = z.enum(PALETTES); |
| 92 | + |
| 93 | +export const StrokeColor = { Black, White, ...Medium } as const; |
| 94 | + |
| 95 | +export const StrokeColorMap = createEnumMap(StrokeColor); |
| 96 | + |
| 97 | +export const STROKE_COLORS = [...MEDIUM_PALETTES, Black, White] as const; |
0 commit comments