19 lines
376 B
JavaScript
19 lines
376 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: [
|
|
require('tailwindcss-image-rendering'),
|
|
],
|
|
} |