-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
101 lines (100 loc) · 2.57 KB
/
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
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
import daisyui from "daisyui";
export default {
plugins: [daisyui],
daisyui: { themes: [], logs: false },
content: ["./**/*.tsx"],
theme: {
container: { center: true },
fontFamily: {
soleil: ["soleil", "Soleil", "sans-serif", "Helvetica Neue", "Helvetica"],
sacker: ["Sacker Gothics", "sans-serif", "Helvetica Neue", "Helvetica"],
roboto: ["Roboto Condensed", "sans-serif", "Helvetica Neue", "Helvetica"],
montserrat: ["Montserrat", "sans-serif", "Helvetica Neue", "Helvetica"],
scoutCond: ["Scout Condensed", "Roboto Condensed", "sans-serif"],
scout: ["Scout", "Roboto Condensed"],
arial: ["Arial", "Helvetica Neue", "Helvetica", "sans-serif"],
gotham: ["Gotham", "sans-serif", "Arial", "Helvetica Neue", "Helvetica"],
gothamBook: [
"Gotham Book",
"sans-serif",
"Arial",
"Helvetica Neue",
"Helvetica",
],
gothamMedium: [
"Gotham Medium",
"sans-serif",
"Arial",
"Helvetica Neue",
"Helvetica",
],
gothamBold: [
"Gotham Bold",
"sans-serif",
"Arial",
"Helvetica Neue",
"Helvetica",
],
museoSans: ["Museo Sans"],
auto: ["auto"],
icomoon: [
"icomoon",
"sans-serif",
"Arial",
"Helvetica Neue",
"Helvetica",
],
},
extend: {
animation: {
sliding: "sliding 30s linear infinite",
},
keyframes: {
sliding: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
},
colors: {
"primary": "#262626",
"primary-content": "#282828",
"warning": "#9D6E2D",
"gray61": "#618175",
},
letterSpacing: {
"one": "1px",
},
dropShadow: {
"5xl": "0 0 1px #000",
},
backgroundImage: {
"arrow-left": "url('/image/fossil-left-arrow.webp')",
"arrow-right": "url('/image/fossil-right-arrow.webp')",
"arrow-up": "url('/image/arrow-up.png')",
"arrow-down": "url('/image/arrow-down.png')",
},
backgroundSize: {
"14": "14px",
},
margin: {
"2px": "2px",
},
screens: {
"3xl": "2000px",
"2/1xl": "1600px",
"xs": "340px",
"2xs": "375px",
"3xs": "360px",
"xxs": "390px",
"xxxs": "428px",
},
fontSize: {
"18": "18px",
"22": "22px",
"28": "28px",
"32": "32px",
"42": "42px",
},
},
},
};