-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
52 lines (51 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
import { colors } from './tokens';
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'selector',
theme: {
extend: {
text: {
// TODO: add typography tokens
base: '14px',
scale: 1.2,
},
fontFamily: {
sans: ['Rubik', 'sans-serif'],
},
boxShadow: {
one: '0px 0px 0px 16px rgba(14, 14, 15, 0.70)',
},
},
colors: {
...colors,
transparent: 'transparent',
'gradient-primary-start': '#F7C3A1',
'gradient-primary-end': '#DF9BE8',
'gradient-red-start': '#FFB4B4',
'gradient-red-end': '#FF6C6C',
'btn-primary-base': '#0e0e0f',
'btn-primary-gradient-start': 'rgba(102, 102, 102, 0.06)',
'btn-primary-gradient-end': 'rgba(0, 0, 0 0.06)',
'btn-primary-outer-gradient-start': '#EEB3BFA3',
'btn-primary-outer-gradient-end': '#DF9BE808',
'btn-secondary-default': '#212124',
divider: '#232329',
// these correspond to textHigh, textMid, textLow
high: '#CACAD6',
mid: '#A3A3AD',
low: '#7F7F87',
link: '#A3A3AD',
containerL0: '#09090A',
containerL3: '#1E1E24',
'streak-up': '#3DB7C2',
'text-red': '#DB4354',
warning: '#ffb938',
},
},
plugins: [
require('@tailwindcss/typography'),
require('tailwind-scrollbar'),
require('tailwindcss-animate'),
],
};