mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
typography: require('./typography'),
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
25: '#FCFCFD',
|
|
50: '#F9FAFB',
|
|
100: '#F3F4F6',
|
|
200: '#E5E7EB',
|
|
300: '#D1D5DB',
|
|
400: '#9CA3AF',
|
|
500: '#6B7280',
|
|
700: '#374151',
|
|
800: '#1F2A37',
|
|
900: '#111928',
|
|
},
|
|
primary: {
|
|
25: '#F5F8FF',
|
|
50: '#EBF5FF',
|
|
100: '#E1EFFE',
|
|
200: '#C3DDFD',
|
|
300: '#A4CAFE',
|
|
400: '#528BFF',
|
|
600: '#1C64F2',
|
|
700: '#1A56DB',
|
|
},
|
|
blue: {
|
|
500: '#E1EFFE',
|
|
},
|
|
green: {
|
|
50: '#F3FAF7',
|
|
100: '#DEF7EC',
|
|
800: '#03543F',
|
|
|
|
},
|
|
yellow: {
|
|
100: '#FDF6B2',
|
|
800: '#723B13',
|
|
},
|
|
purple: {
|
|
50: '#F6F5FF',
|
|
200: '#DCD7FE',
|
|
},
|
|
indigo: {
|
|
25: '#F5F8FF',
|
|
100: '#E0EAFF',
|
|
600: '#444CE7',
|
|
},
|
|
},
|
|
screens: {
|
|
mobile: '100px',
|
|
// => @media (min-width: 100px) { ... }
|
|
tablet: '640px', // 391
|
|
// => @media (min-width: 600px) { ... }
|
|
pc: '769px',
|
|
// => @media (min-width: 769px) { ... }
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|