19 lines
430 B
JavaScript
19 lines
430 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{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: [],
|
|
};
|