30 lines
779 B
JavaScript
30 lines
779 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#f7f7f6',
|
|
100: '#efefed',
|
|
200: '#dfdfdc',
|
|
300: '#c6c6c2',
|
|
400: '#9f9f99',
|
|
500: '#7b7b74',
|
|
600: '#5e5e58',
|
|
700: '#44443f',
|
|
800: '#2b2b27',
|
|
900: '#171715',
|
|
},
|
|
},
|
|
animation: {
|
|
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|