ZoeysBits/tailwind.config.js

19 lines
376 B
JavaScript
Raw Normal View History

2024-01-14 09:02:42 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2024-01-14 11:24:34 +01:00
mode: 'jit',
2024-01-14 09:02:42 +01:00
content: ["./src/**/*.{html,js}"],
2024-01-14 11:24:34 +01:00
darkMode: false,
2024-01-14 09:02:42 +01:00
theme: {
2024-01-14 11:24:34 +01:00
extend: {
colors: {
primary: "#111111",
secondary: "#f9b6c1",
sidebar: "#161616",
texthover: "#eae8f0",
},
},
2024-01-14 09:02:42 +01:00
},
2024-01-15 13:47:31 +01:00
plugins: [
require('tailwindcss-image-rendering'),
],
2024-01-14 11:24:34 +01:00
}