Files
17th-Site-Front-End-V2/17th Website/tailwind.config.js

21 lines
340 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: true,
theme: {
colors: {
'white': '#EDF2F4',
'blue': '#01bde7',
'gray-dark': '#1C1C21',
'gray-light': '#272731'
},
extend: {},
},
plugins: [],
}