25 lines
521 B
JavaScript
25 lines
521 B
JavaScript
![]() |
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
slate: {
|
||
|
950: "#020617",
|
||
|
},
|
||
|
},
|
||
|
backgroundImage: {
|
||
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
||
|
},
|
||
|
fontFamily:{
|
||
|
roboto:["Roboto","sans-serif"],
|
||
|
orbitron:["Orbitron","sans-serif"],
|
||
|
},
|
||
|
container:{
|
||
|
padding:"2rem"
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|