-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {},
fontFamily: {
custom: ['jetbrains-mono', 'JetBrains', 'sans-serif'],
},
colors: {
'primary-color': '#551C50',
'txt-grey-color': '#959595',
'txt-grey-color-faded': '#ababab7b',
'txt-black-color': '#000000',
'txt-white-color': '#FFFFFF',
'txt-red': 'red',
'selector-color': '#FBB124',
},
fontSize: {
TextXXL: '37pt',
TextXL: '34pt',
TextLarge: '28pt',
TextBig: '25pt',
TextMid: '20pt',
TextMidSmall: '17pt',
TextSmall: '14pt',
TextXS: '11pt',
TextSMALLXS: '9pt',
TextXXS: '6pt',
TextXXXS: '5pt',
GlobalBtnsTxt: '15pt',
HeadingSmall: '16pt',
cardText: '14pt',
ProductTitleTiny: '6pt',
ProductTitleSmall: '8pt',
ProductTitleMedSmall: '10pt',
ProductTitleMedium: '13pt',
ProductAmountIndex: '12pt',
VariationTitle: '7pt',
VariationTitleSmall: '5.4pt',
ReceiptPriceL: '38pt',
ReceiptPriceM: '30pt',
},
},
plugins: [],
}