-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["*.{html,js}"],
theme: {
screens: {
small: "0px",
mobile: "375px",
mobileOldHorSmall: "419px",
mobileHorSmall: "567px",
mobileHor: "640px",
tablet: "767px",
bigHor: "811px",
vertIpadMini: "820px",
bigPhoneHor: "844px",
laptop: "976px",
ipad: "1023px",
hd: "1365px",
fhd: "1440px",
},
extend: {
fontFamily: {
paris: "Parisienne, cursive",
garamond: "EB Garamond, serif",
},
colors: {
offWhite: "#f2f2f2",
offBlack: "#181818",
purpleDark: "#554e94",
purpleDarker: "#3d368c",
purpleMid: "#8a71d6",
purpleLight: "#c3b0de",
purpleLighter: "#ebe3f8 ",
btnNormal: "#292547",
},
},
},
plugins: [],
};