18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./App.{js,jsx,ts,tsx}", "./src/**/*.{js,jsx,ts,tsx}"],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
carbon: "#08080a",
|
|
titan: "#1f1f23",
|
|
amber: {
|
|
500: "#f59e0b",
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|