17 lines
No EOL
329 B
JavaScript
17 lines
No EOL
329 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: ["./src/**/*.{html,js}"],
|
|
darkMode: false,
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#111111",
|
|
secondary: "#f9b6c1",
|
|
sidebar: "#161616",
|
|
texthover: "#eae8f0",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |