forked from ETCGrantsDAO/etc-grants-dao-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
104 lines (102 loc) · 2.58 KB
/
tailwind.config.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/**/*.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
borderWidth: {
fourty: "40px",
},
width: {
heroButtonMobileWidth: "175px",
heroButtonDesktopWidth: "186px",
tableDesktopWidth: "72%",
bodyRightSecDesktop: "80%",
bodyLeftSecDesktop: "20%",
bodyRightSecMobile: "70%",
bodyLeftSecMobile: "30%",
fullWidth: "100%",
logoDesktopWidth: "300px",
logoMobileWidth: "300px",
rightSecButton: "247px",
},
height: {
logoDesktopheight: "200px",
bodyLeft: "80vh",
},
padding: {
heroHeadingMobile: "52px",
bodyY: "122px",
navMobile: "26px",
},
margin: {
tableMobile: "-32px",
searchIcon: "-4",
heroBtnIcon: "17px",
heroBtnIconA: "9px",
heroBtnIcon1: "7px",
heroBtnIcon2: "7px",
},
fontSize: {
xxl: "64px",
fourty: "40px",
thirtyTwo: "28px;",
twentyFour: "24px;",
heroTextDesktop: "28px",
heroTextMobile: "20px",
},
lineHeight: {
thirtyThree: "33px",
twentyEight: "28px",
twentyFour: "24px",
thirtySix: "36px",
rightHeadingsDt: "48px;",
topHeadingMobile: "60px",
heroHeadingDesktop: "88px",
heroText: "42px",
},
colors: {
background: "#020518",
headingsColor: "#ffffff",
textColor: "#CCCCCC",
tableHBorder: "#CECECE",
darkGreen: "#0AA613",
gradient1: "#53EB45",
gradient1b: "#133706",
lightGreen: "#93DA97",
parrotGreen: "#93DA97",
tableBackground: "#EEEEEE",
footerBorder: "#273246",
topApplyNow: "transparent",
},
fontFamily: {
raleway: "'Raleway', sans-serif",
dmSans: "'DM Sans', sans-serif",
notoSans: "'Noto Sans', sans-serif",
roboto: "'Roboto', sans-serif",
// raleway: ["Raleway", "sans-serif"],
// notoSans: ["Noto Sans", "sans-serif"],
},
screens: {
xs: "400px",
// => @media (min-width: 640px) { ... }
},
animation: {
border: "border 4s ease infinite",
},
minWidth: {
locale: "24px",
},
minHeight: {
bodyLeft: "1000px",
heroHeight: "669px",
},
maxWidth: {
heroBtnIcon: "11px",
},
maxHeight: {
heroBtnIcon: "14px",
},
},
},
plugins: [],
};