-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 991 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 991 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
// /** @type {import('tailwindcss').Config} */
import { PICKLE_COLOR, PICKLE_WIDTH, PICKLE_HEIGHT } from './src/constants/pickleTheme';
module.exports = {
content: ['./src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
mainWhite: PICKLE_COLOR.mainWhite,
middleBlack: PICKLE_COLOR.middleBlack,
lightGray: PICKLE_COLOR.lightGray,
middleGray: PICKLE_COLOR.middleGray,
darkGray: PICKLE_COLOR.darkGray,
pointOrange: PICKLE_COLOR.pointOrange,
subOrange: PICKLE_COLOR.subOrange,
},
fontFamily: {
base: 'Poppins',
},
fontSize: {
h1: '28px',
h3: '22px',
middle: '18px',
small: '15px',
},
spacing: {
header: PICKLE_HEIGHT.header.sm,
sidebar: PICKLE_WIDTH.sidebar,
},
maxWidth: {
container: PICKLE_WIDTH.container,
},
minWidth: {
sidebar: PICKLE_WIDTH.sidebar,
},
},
},
plugins: [],
};