@datametria/vue-components
Version:
DATAMETRIA Vue.js 3 Component Library with Multi-Brand Theming - 51 components + 10 composables with theming support, WCAG 2.2 AA, dark mode, responsive system
29 lines (26 loc) • 520 B
text/typescript
/**
* Color Tokens
* @author Vander Loto - CTO DATAMETRIA
* @date 13/11/2025
*/
import type { ColorTokens } from '../types'
export const defaultColors: ColorTokens = {
primary: '#0072CE',
secondary: '#4B0078',
success: '#10b981',
warning: '#f59e0b',
error: '#ef4444',
info: '#06b6d4',
neutral: {
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
300: '#d1d5db',
400: '#9ca3af',
500: '#6b7280',
600: '#4b5563',
700: '#374151',
800: '#1f2937',
900: '#111827'
}
}