-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (47 loc) · 973 Bytes
/
tailwind.config.ts
File metadata and controls
48 lines (47 loc) · 973 Bytes
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
/* eslint-disable global-require */
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
colors: {
darkgray: '#5b5959',
gray: '#8c8c8c',
gray_1: '#d2d2d2',
red: '#c52b2b',
yellow: "#FFEE02",
black: '#000000',
white: "#ffffff"
},
container: {
center: true,
},
extend: {
fontFamily: {
dresden: ["DresdenElektronik", "sans-serif"],
sans: ["DresdenElektronik", ...defaultTheme.fontFamily.sans],
},
screens: {
ios: "320px",
samsungS8: "360px",
xs: "390px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1150px",
"2xl": "1315px",
"3xl": "1920px",
},
},
},
variants: {
extend: {
display: ["dark"],
},
},
darkMode: ["class"],
plugins: [
],
}