AeThex-Connect/packages/web/tailwind.config.cjs

37 lines
748 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
discord: {
50: '#f9fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
950: '#020617',
},
gaming: {
primary: '#5865F2',
hover: '#4752C4',
dark: '#36393F',
darker: '#2C2F33',
light: '#DCDDDE',
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}