Files
graff.training/tailwind.config.js
T
Your Name 36cd50c92b init
2024-06-26 14:11:20 +05:00

22 lines
390 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
"mobile": '360px',
"tablet": '640px',
"desktop": '1024px',
},
colors: {
"text-gradient": '-webkit-linear-gradient(#798FFF, #D375FF)'
}
},
},
plugins: [],
}