forked from filecoin-station/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (65 loc) · 1.45 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
59
60
61
62
63
64
65
66
67
'use strict'
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./renderer/src/**/*.{html,js,jsx,tsx}'
],
theme: {
fontSize: {
base: '1.25rem',
'header-3xs': '1.25rem',
'header-2xs': '1.5rem',
'header-xs': '1.75rem',
'header-s': '2.25rem',
'header-m': '2.75rem',
'header-l': '3.25rem',
'body-3xs': '0.625rem',
'body-2xs': '0.75rem',
'body-xs': '0.875rem',
'body-s': '1rem',
'body-m': '1.25rem',
'body-l': '1.75rem'
},
fontFamily: {
title: ['SuisseIntl', 'sans-serif'],
body: ['SpaceGrotesk', 'serif'],
number: ['SpaceMono', 'monospace']
},
colors: {
white: '#fff',
black: '#000',
primary: '#2a1cf7',
'primary-hover': '#1A1199',
'primary-click': '#2317CC',
'primary-dark': '#330867',
accent: '#40ffc4',
secondary: '#30b7e8',
'secondary-accent': '#d5f710',
'tertiary-accent': '#330867',
grayscale: {
100: '#f0f0f0',
200: '#f7f7f7',
250: '#e9ebf1',
300: '#ebeaea',
400: '#c3cad9',
500: '#b3b3b3',
600: '#666666',
700: '#313131'
},
green: {
100: '#33cc9d',
200: '#68cc58'
},
red: {
100: '#ce5347',
200: '#ff4d81'
},
orange: {
100: '#f5c451',
200: '#f76003'
},
transparent: '#ffffff00'
}
},
plugins: []
}