DocsGPT/frontend/tailwind.config.cjs

56 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-02-07 17:57:21 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-02-10 21:20:30 +00:00
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
2023-10-09 14:18:17 +00:00
darkMode: 'class',
2023-02-07 17:57:21 +00:00
theme: {
2023-02-10 21:20:30 +00:00
extend: {
spacing: {
112: '28rem',
128: '32rem',
},
2023-02-11 16:56:44 +00:00
colors: {
'eerie-black': '#212121',
2023-03-02 02:33:38 +00:00
'black-1000': '#343541',
2023-02-11 16:56:44 +00:00
jet: '#343541',
2023-10-19 19:57:41 +00:00
'gray-alpha': 'rgba(0,0,0, .64)',
'gray-1000': '#F6F6F6',
2023-02-24 03:55:03 +00:00
'gray-2000': 'rgba(0, 0, 0, 0.5)',
'gray-3000': 'rgba(243, 243, 243, 1)',
2023-03-05 17:06:57 +00:00
'gray-4000': '#949494',
2023-03-13 04:29:29 +00:00
'gray-5000': '#BBBBBB',
2023-03-15 02:40:44 +00:00
'gray-6000': '#757575',
'red-1000': 'rgb(254, 202, 202)',
2023-02-24 03:55:03 +00:00
'red-2000': '#F44336',
'red-3000': '#621B16',
2023-03-02 02:33:38 +00:00
'blue-1000': '#7D54D1',
2023-03-13 04:29:29 +00:00
'blue-2000': '#002B49',
'blue-3000': '#4B02E2',
'purple-30': '#7D54D1',
2023-10-25 04:54:55 +00:00
'purple-3000': 'rgb(230,222,247)',
2023-03-18 12:55:23 +00:00
'blue-4000': 'rgba(0, 125, 255, 0.36)',
'blue-5000': 'rgba(0, 125, 255)',
2023-10-23 11:31:41 +00:00
'green-2000': '#0FFF50',
'light-gray': '#edeef0',
'white-3000': '#ffffff',
2024-01-18 20:17:23 +00:00
'just-black':"#00000",
'purple-taupe':'#464152',
'dove-gray': '#6c6c6c',
2024-01-21 11:48:23 +00:00
'silver': '#c4c4c4',
'rainy-gray': '#a4a4a4',
'raisin-black':'#222327',
2024-01-18 20:17:23 +00:00
'chinese-black':'#161616',
'chinese-silver':'#CDCDCD',
2024-01-19 13:31:13 +00:00
'dark-charcoal':'#2F3036',
2024-01-21 11:48:23 +00:00
'bright-gray':'#ECECF1',
'outer-space':'#444654',
2024-02-12 20:23:25 +00:00
'gun-metal':'#2E303E',
'sonic-silver':'#747474',
'soap':'#D8CCF1',
2024-03-28 22:43:12 +00:00
'independence':'#54546D',
'philippine-yellow':'#FFC700',
2023-02-11 16:56:44 +00:00
},
2023-02-10 21:20:30 +00:00
},
2023-02-07 17:57:21 +00:00
},
plugins: [],
2023-02-11 16:56:44 +00:00
};