27 lines
496 B
TypeScript
27 lines
496 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: '#eef6ff',
|
|
100: '#d9eaff',
|
|
200: '#bcd9ff',
|
|
300: '#8ec1ff',
|
|
400: '#599dff',
|
|
500: '#3377f5',
|
|
600: '#1f59db',
|
|
700: '#1a47b0',
|
|
800: '#1b3e8c',
|
|
900: '#1c386f',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|