-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 1.14 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
const { transform } = require('typescript');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
animation: {
"loop-scroll": "loop-scroll 50s linear infinite",
},
keyframes: {
"loop-scroll": {
from: { transform: "translateX(0)" },
to: {transform: "translateX(-100%)"},
},
},
"colors": {
"jaune": "#f0a500",
"bleu": "#2c3236",
"noir": "#131517",
"blanc": "#f2f4f7",
"cyan": "#258bce"
},
"fontSize": {
"base": "1rem",
"lg": "1.5rem",
"xl": "1.75rem",
"2xl": "2.8125rem"
},
"fontFamily": {
"swap": "Carter One",
"sans": "Josefin Sans",
},
"screens": {
phone: '274px',
// tablette: '425px',
desktop: '1024px'
},
"borderRadius": {
"none": "0",
"xs": "0.46525049209594727rem",
"sm": "0.5625rem",
"default": "0.625rem",
"lg": "0.630303144454956rem",
"xl": "0.875rem",
"2xl": "0.9375rem",
"3xl": "0.951923131942749rem",
"4xl": "1.125rem",
"5xl": "1.3039772510528564rem",
"6xl": "1.5845071077346802rem",
"7xl": "1.8125rem",
"8xl": "2.375rem"
}
},
plugins: [],
}
}