tailwindcustom

카테고리 없음

tailwind custom color 설정, 테일윈드 커스텀 컬러 지정

테일윈드 커스텀 컬러 지정은 공식문서에 친절히 나와있지만. 나같은 입문자는 공식문서를 봐도 끝없이 헤맨다 .. 사용자 지정 컬러 테마를 만들어 보자. tailwind.config.js module.exports = { content: [ "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors:{ header_black: { black: "#30363A", white:"#fff", }, }, fontFamily: { sans: ['Roboto'], }, }, }, plugins: [], } custom color설정할때 주의점은 꼭 theme: { extend: { colors 로 써야한다는 것이다. extend 괄호 안에 들어가도록 유의하자. 그리고 co..

Mori_FEDev
'tailwindcustom' 태그의 글 목록