22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"gradient-dark": "#161926",
|
|
"gradient-light": "#1b2034",
|
|
primary: "#1E96FC",
|
|
"primary-dark": "#1B264F",
|
|
action: "#FF3366",
|
|
secondary: "#FFE600",
|
|
"primary-text": "#D9D9D9",
|
|
},
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|