Files
lti-web-client/src/types/theme.d.ts
T
ValdiANS 2e1b0fef2b init
2025-09-26 11:06:31 +07:00

12 lines
141 B
TypeScript

type Color =
| 'primary'
| 'secondary'
| 'accent'
| 'neutral'
| 'info'
| 'success'
| 'warning'
| 'error';
export { Color };