generated from Youssef-kobi/react-tailwindcss-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.83 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
/** @type {import('tailwindcss').Config} */
/* Importing the image file into the tailwind config file. */
// const myImage = require('./src/styles/BG');
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fill: (theme) => ({
red: theme('colors.red.primary'),
}),
// backgroundImage: `url('/src/styles/BG.png')`,
// animation: {
// marquee: 'marquee 30s linear infinite',
// marquee2: 'marquee2 30s linear infinite',
// cart: 'transition: left .5s cubic-bezier(0.820, 0.085, 0.395, 0.895);',
// },
// keyframes: {
// marquee: {
// '0%': { transform: 'translateX(0%)' },
// '100%': { transform: 'translateX(-100%)' },
// },
// marquee2: {
// '0%': { transform: 'translateX(100%)' },
// '100%': { transform: 'translateX(0%)' },
// },
// slideLeft: {
// '0%': {
// transform: 'translateX(-100%)',
// },
// '100%': {
// transform: 'translateX(0)',
// },
// },
// },
colors: {
// white: {
// pure: '#ffffff',
// light: '#f5f7fb',
// },
// blue: {
// dark: '#324d67',
// },
// black: {
// light: '#495057',
// faded: '#00000059',
// },
// gray: {
// base: '#5f5f5f',
// light: '#ebebeb',
// background: '#fafafa',
// primary: '#dbdbdb',
// },
// red: {
// primary: '#ed4956 ',
// },
},
fontFamily: {
Public: ['"Public Sans"', 'sans-serif'],
},
// boxShadow: {
// '005': '0 0 5px',
// },
// variants: {
// display: ['group-hover'],
// },
},
},
plugins: [],
};