forked from CSI-KJSCE/Travel-policy-
16 lines
365 B
JavaScript
16 lines
365 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"google-dark": "#202124",
|
|
"google-gray": "#303134",
|
|
"google-text": "#E8EAED",
|
|
"google-text-secondary": "#9AA0A6",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |