tailwind.config.js 에서 특정 키워드를 지정해서 클래스 안에 작성이 가능하다.
아래는 해당 파일이다.
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
mode: "jit",
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
// darkMode: true, // or 'media' or 'class'
theme: {
extend: {
colors: {
brand: "#FF0000",
},
},
},
variants: {
extend: {},
},
plugins: [],
};
'Frontend > css' 카테고리의 다른 글
[CSS] input type number 우측 화살표 제거하기 (0) | 2024.12.30 |
---|---|
[Warning] Unknown at rule @tailwind css : React에서 TailwindCSS 사용 시 발생하는 경고 (0) | 2023.07.27 |
[CSS] 블럭요소와 인라인요소 (0) | 2023.06.29 |
[CSS] Content 화면 중앙배치 (0) | 2023.04.05 |
[CSS] 웹화면의 가운데 정렬하기 (1) | 2021.11.06 |