mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 19:49:25 +01:00
14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}", "./index.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
desert: "#EADAB9",
|
|
"desert-green-light": "#BABAAA",
|
|
},
|
|
},
|
|
},
|
|
};
|