28 lines
523 B
TypeScript
28 lines
523 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: '#f0f4ff',
|
|
100: '#dde8ff',
|
|
200: '#c3d4fe',
|
|
300: '#9ab7fd',
|
|
400: '#6b8dfb',
|
|
500: '#3b5ff8',
|
|
600: '#2640ed',
|
|
700: '#1e2fd9',
|
|
800: '#1f29b0',
|
|
900: '#1f278b',
|
|
950: '#161a55',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|