-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
39 lines (37 loc) · 949 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
'sm': {'max': '639px'},
'md': {'max': '767px'},
'lg': {'max': '1023px'},
'xl': {'max': '1279px'},
},
colors: {
google: {
'text-gray': '#3c4043',
'button-blue': '#1a73e8',
'button-blue-hover': '#5195ee',
'button-dark': '#202124',
'button-dark-hover': '#555658',
'button-border-light': '#dadce0',
'logo-blue': '#4285f4',
'logo-green': '#34a853',
'logo-yellow': '#fbbc05',
'logo-red': '#ea4335',
},
darkmode:'#1b1c1e',
lightmode: '#f2f8fc'
},
},
},
plugins: [],
darkMode: "class",
};
export default config;