21 lines
481 B
JavaScript
21 lines
481 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"auth-form": "#F7F7F9",
|
|
"primary-text-color": "#11212D",
|
|
"secondary-text-color": "#777577",
|
|
"primary-color": "#015699",
|
|
"secondary-color": "#E6E8EA",
|
|
"border-color": "#D9D9D9",
|
|
"dark-blue": "#013C6B",
|
|
"sky-blue": "#4D88B7",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |