main: added inital version of music shop
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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
|
||||
Reference in New Issue
Block a user