@tuniao/tnui-vue3-uniapp
Version:
TuniaoUI for vue3 uniapp
28 lines (26 loc) • 609 B
text/typescript
export const tuniaoColors = [
'red',
'purplered',
'purple',
'bluepurple',
'aquablue',
'blue',
'indigo',
'cyan',
'teal',
'green',
'yellowgreen',
'lime',
'yellow',
'orangeyellow',
'orange',
'orangered',
'brown',
'grey',
'gray',
] as const
export const tuniaoColorType = ['', 'dark', 'disabled', 'light'] as const
export const tuniaoColorNames = ['bg', 'text', 'border', 'shadow'] as const
export type TuniaoColor = (typeof tuniaoColors)[number]
export type TuniaoColorType = (typeof tuniaoColorType)[number]
export type TuniaoColorName = (typeof tuniaoColorNames)[number]