Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- flex-1
- 스크롤 이벤트
- modal
- 옵저버블
- angular animation
- Router
- 앵귤러 애니메이션
- mysql if
- 모달
- ajax 사용 예시
- formgroup
- angular modal
- Ionic modal
- Angular Router
- 스크롤 이벤트 감지
- ApexChart
- TAILWIND
- 셀렉트박스 커스텀
- angular button
- 앵귤러 모달
- scroll
- route
- 아이오닉 스크롤 이벤트
- prisma
- 호버
- egov spring ajax 사용 예시
- summary
- angular route
- 검색
- Oracle LISTAGG 사용 예시
Archives
- Today
- Total
깜놀하는 해므찌로
tailwind 기본 설정 / tailwind is not working 본문
반응형
SMALL
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts,js,scss}"],
theme: {
extend: {
colors: {
primary: generateColors("#001650"),
menuHover: generateColors("#1A2D62"),
primarylighter: generateColors("#334573"),
danger: generateColors("#dc2626"),
user: generateColors("#009E23"),
branch: generateColors("#9E007A"),
menu: generateColors("#9E7200"),
success: generateColors("#047857"),
complete: generateColors("#5B21B6"),
send: generateColors("#1D4ED8"),
backgroundCancel: generateColors("#D9D9D9"),
cancelX: generateColors("#8A9099"),
manufacturing: generateColors("#064E3B"),
},
},
},
plugins: [],
};
function generateColors(color) {
const { toneMap } = require("@nextcss/color-tools");
return {
DEFAULT: color,
...toneMap(color),
};
}
반응형
LIST
'IT' 카테고리의 다른 글
CSS select box custom Primary feat.tailwind (0) | 2023.04.26 |
---|---|
Angular component string to template HTML / 컴포넌트 string 템플릿에서 html로 읽는 방법 예시 (0) | 2023.04.26 |
transition-all css / select custom / details div로 끝내기 (0) | 2023.04.25 |
selectbox custom Details 활용 예시 (0) | 2023.04.25 |
페이지네이션 현재 페이지 10개만 가져오기 예시 pagination (0) | 2023.04.25 |