mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-27 09:45:13 +00:00
Move color palettes to constants/coreColorPalettes.ts (#2035)
This commit is contained in:
16
src/constants/coreColorPalettes.ts
Normal file
16
src/constants/coreColorPalettes.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import dark from '@/assets/palettes/dark.json'
|
||||
import light from '@/assets/palettes/light.json'
|
||||
import solarized from '@/assets/palettes/solarized.json'
|
||||
import arc from '@/assets/palettes/arc.json'
|
||||
import nord from '@/assets/palettes/nord.json'
|
||||
import github from '@/assets/palettes/github.json'
|
||||
import type { ColorPalettes } from '@/types/colorPaletteTypes'
|
||||
|
||||
export const CORE_COLOR_PALETTES: ColorPalettes = {
|
||||
dark,
|
||||
light,
|
||||
solarized,
|
||||
arc,
|
||||
nord,
|
||||
github
|
||||
} as const
|
||||
Reference in New Issue
Block a user