mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 19:12:50 +00:00
43 lines
913 B
JavaScript
43 lines
913 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./apps/**/*.{js,ts,jsx,tsx}',
|
|
'./libs/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#eff6ff',
|
|
100: '#dbeafe',
|
|
200: '#bfdbfe',
|
|
300: '#93c5fd',
|
|
400: '#60a5fa',
|
|
500: '#3b82f6',
|
|
600: '#2563eb',
|
|
700: '#1d4ed8',
|
|
800: '#1e40af',
|
|
900: '#1e3a8a',
|
|
},
|
|
secondary: {
|
|
50: '#fdf8f6',
|
|
100: '#f2e8e5',
|
|
200: '#eaddd7',
|
|
300: '#e0cec7',
|
|
400: '#d2bab0',
|
|
500: '#bfa094',
|
|
600: '#a18072',
|
|
700: '#977669',
|
|
800: '#65524d',
|
|
900: '#2c1f1a',
|
|
},
|
|
},
|
|
boxShadow: {
|
|
card: '0 4px 20px rgba(15, 23, 42, 0.08)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|