AcaMate_Web/tailwind.config.js
SEAN-59 7284dca6f2 Record
정리전 로컬 데이터 푸시
2025-10-28 20:47:58 +09:00

71 lines
1.6 KiB
JavaScript

module.exports = {
content: [
"./**/*.razor",
"./wwwroot/index.html"
],
theme: {
extend: {
colors: {
disable: {
light: '#F8F8F8',
normal: '#B8B9B4',
dark: '#8A8B87',
darker: '#40413F'
},
information: {
light: '#F7FBF8',
normal: '#B2DBBB',
dark: '#86A48C',
darker: '#3E4D41'
},
point: {
light: '#F9FBFF',
normal: '#C2D6FA',
dark: '#92A1BC',
darker: '#444B58'
},
second: {
light: '#F2F0ED',
normal: '#79654E',
dark: '#5D4C3B',
darker: '#2A231B'
},
normal: {
light: '#FDFCFB',
normal: '#EBDFD2',
dark: '#B0A79E',
darker: '#524E4A'
},
danger: {
light: '#FFF9F9',
normal: '#FDC6C3',
dark: '#BE9592',
darker: '#594544'
},
text: {
title: '#1D1D1D',
detail: '#545454',
disabled: '#8E8E8E',
white: '#FFFFFF',
back: '#D8D8D8',
border: '#C6C6C6'
}
},
fontFamily: {
sans: ['"Noto Sans KR"', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif'],
},
screens: {
'xs': '480px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px'
}
},
},
plugins: [
require('tailwind-scrollbar-hide')
],
}