mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:27:19 +00:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'aethex-cyan': '#00FFCC',
|
|
'aethex-dark': '#0A0E1A',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|