-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
81 lines (80 loc) · 2.39 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
open_sans: ['Open Sans', 'sans-serif'],
fira_sans: ['Fira Sans', 'sans-serif'],
pt_sans: ['PT Sans', 'sans-serif'],
kanit: ['Kanit', 'sans-serif'],
work_sans: ['Work Sans', 'sans-serif'],
rubik: ['Rubik', 'sans-serif'],
},
animation: {
'spin-slow': 'spin 3s linear infinite',
},
gridTemplateColumns: {
contentColumnGrid: '250px auto',
warningColumnsGrid: '80px auto',
},
gridTemplateRows: {
warningRowsGrid: '50px auto',
},
colors: {
beta: 'rgba(162, 210, 255, 1)',
betaBorder: 'rgba(0, 0, 255,0.6)',
success: '#01a745',
successTrans: 'rgb(1, 167, 69,0.4)',
tableSuccessTrans: 'rgb(1, 167, 69,0.1)',
failure: '#d22500',
failureTrans: 'rgba(210, 37, 0,0.4)',
tableFailureTrans: 'rgba(210, 37, 0,0.1)',
linkGreen: '#2B7A0B',
warning: '#EBB02D',
offWhiteBase: '#ecf0f3',
disabledBase: '#9BA4B5',
classical: {
// 300: '#00FFFF',
// 200: 'rgba(0, 255, 255,0.3)',
// 100: 'rgba(0, 255, 255,0.1)',
300: 'rgb(185, 243, 228)',
200: 'rgba(185, 243, 228,0.8)',
100: 'rgba(185, 243, 228,0.2)',
},
counting: {
300: 'rgba(0, 0, 255,0.3)', //blue
200: 'rgba(0, 0, 255,0.2)',
100: 'rgba(0, 0, 255,0.05)',
},
partitioned: {
300: 'rgba(160, 32, 240,0.3)', //purple,
200: 'rgba(160, 32, 240,0.2)',
100: 'rgba(160, 32, 240,0.)',
},
scalable: {
300: 'rgba(255, 255, 0,0.4)', //yellowDark
200: 'rgba(255, 255, 0,0.3)',
100: 'rgba(255, 255, 0,0.1)',
},
cuckoo: {
300: 'rgba(255, 0, 205,0.3)', //magentaBright
200: 'rgba(255, 0, 205,0.2)',
100: 'rgba(255, 0, 205,0.05)',
},
default: {
300: '#AAFF00', //greenBright
200: 'rgba(170, 255, 0,0.3)',
100: 'rgba(170, 255, 0,0.1)',
},
},
},
},
plugins: [],
}