mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
27 lines
412 B
JavaScript
27 lines
412 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: {
|
|
darker: "#202831",
|
|
dark: "#2D3742",
|
|
neutral: "#394552"
|
|
},
|
|
interaction: {
|
|
blue: "#5CA7FF"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
],
|
|
darkMode: 'class'
|
|
}
|
|
|
|
|