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