podzahr/tailwind.config.ts
nfel 8a7842e263
main: added inital version of music shop
Signed-off-by: nfel <nfilsaraee@gmail.com>
2025-11-20 14:42:58 +03:30

37 lines
790 B
TypeScript

import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
50: '#e6f1ff',
100: '#b3d9ff',
200: '#80c1ff',
300: '#4da8ff',
400: '#1a90ff',
500: '#0077e6',
600: '#005db3',
700: '#004380',
800: '#00294d',
900: '#000f1a',
},
accent: {
orange: '#ff6b35',
cyan: '#00d9ff',
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config