aboutsummaryrefslogtreecommitdiff
path: root/apps/website/tailwind.config.cjs
blob: 3cf5259a8475b451366386e11cfee290db1474b8 (plain)
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
/** @type {import('tailwindcss').Config} */
module.exports = {
	content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
	theme: {
		colors: {
			blue: {
				500: 'rgba(31, 101, 214, 1)'
			},
			gray: {
				50: 'rgba(240, 242, 244, 1)',
				400: 'rgba(138, 150, 168, 1)',
				700: 'rgba(65, 74, 88, 1)',
				800: 'rgba(42, 47, 55, 1)'
			},
			white: {
				DEFAULT: 'rgba(255, 255, 255, 1)',
				secondary: 'rgba(238, 241, 254, 1)',
				hover: 'rgba(231, 235, 252, 1)'
			},
			black: {
				DEFAULT: 'rgba(0, 0, 0, 1)'
			},
			text: {
				DEFAULT: 'rgba(2, 3, 7, 1)',
				primary: 'rgba(2, 3, 7, 1)'
			}
		},
		borderRadius: {
			none: '0',
			sm: '3px',
			md: '5px',
			lg: '8px',
			xl: '12px',
			full: '100vw'
		},
		fontSize: {
			'xs': '12px',
			'sm': '14px',
			'md': '16px',
			'lg': '18px',

			'header-sm': '24px',
			'header': '28px',
			'header-lg': '32px',

			'body-sm': '15px',
			'body': '16px',
			'body-lg': '17px'
		},
		extend: {}
	},
	plugins: []
};