-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
58 lines (56 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./src/app/**/*.ts",
"./src/app/**/*.html"
],
theme: {
colors: {
'cutty-sark': {
'50': '#f4f7f7',
'100': '#e3e9ea',
'200': '#cad5d7',
'300': '#a4b7bc',
'400': '#789198',
'500': '#5d767d',
'600': '#556a72',
'700': '#455359',
'800': '#3d484d',
'900': '#363e43',
'950': '#21272b',
},
'aquamarine': {
'50': '#e9fff7',
'100': '#caffea',
'200': '#9bffdb',
'300': '#73fbd3',
'400': '#1becb5',
'500': '#00d4a0',
'600': '#00ad84',
'700': '#008b6d',
'800': '#006d57',
'900': '#005949',
'950': '#00332b',
},
'white':'#ffffff',
'black':"#000000"
},
extend: {
fontFamily: {
sans: ["Varela Round", ...defaultTheme.fontFamily.sans],
},
fontSize: {
'xs': ["0.6rem", "0.8rem"]
},
width: {
'cherry': "10mm",
},
height: {
'cherry': "12.5mm",
'cherry-lip': "2mm"
},
},
},
plugins: [],
};