[Next.js & TailwindCSS] - 환경변수를 이용한 컬러 테마 설정

NoowaH·2023년 1월 26일
0

Next.js

목록 보기
14/17

Using ENV values for tailwind colors

Situation

  • 하나의 동일한 NextJs 앱 빌드에서 런타인 환경변수만 변경하는 방식으로 웹 프로젝트이 색상을 변경하여 다양한 테마를 새로 빌드하지 않고 빠르게 변경

.env

COLOR_PRIMARY=0F4C80
COLOR_SECONDARY=F6F6F6
...

Tailwind ^v3.1.4

  • Tailwind의 새로운 기능으로 tailwind.config.js 설정을 하여 css 변수에 지정된 rgba 색상을 아래와 같이 값을 받아올 수 있다
colors: {
	primary: {
		DEFAULT: 'rgb(var(--color-primary) / <alpha-value>)',
	}
}
@layer components {
	root: {
		--color-primary: 255 255 255 30;
	}
}

❗️Problem

  • 해당 프로젝트에서 환경변수에 지정된 색상은 HEX 값
  • Tailwind의 기능은 현제 rgb/ rgba 값만 지원이 된다

✅ Solution

  • 앱을 실행 후 런타인 환경변수를 읽고 HEX 값을 rgbㅁ로 변환시켜주는 커스텀 함수 생성

/utils/colors.ts

export function validHEX(hex: string) {
	if (typeof hex !== 'string') {
		return false
	}
	const reg = new RegExp(/^\#?[0-9a-fA-F]{6,8}$/)
	return reg.test(hex)
}

//HEX → RGBA
export function HEX2RGBA(hex: string): Rgba {
	if (!validHEX(hex)) {
		throw new Error(`'${hex}' is not valid hex format!`)
	}
	let temp = hex.replace('#', '')
	let len = temp.length / 2
	let rgba: string[] = []
	for (let i = 0; i < len; i++) {
		let hTarget = temp.substring(i * 2, (i + 1) * 2)
		//alpha value(0~1)
		if (i === 3) {
			rgba.push(String(parseInt(hTarget, 16) / 255))
		} else {
		//r,g,b value (0~255)
			rgba.push(String(parseInt(hTarget, 16)))
		}
	}
	return rgba as Rgba
}


export const setColorShades = (hex: string, theme: ColorTheme) => {
	const rgb = HEX2RGBA(hex)
	switch (theme) {
		case ColorTheme.Primary:
			document
			.documentElement
			.style
			.setProperty('--color-primary', rgb.join(' '))
		case ColorTheme.Secondary:
			document
			.documentElement
			.style
			.setProperty('--color-secondary', rgb.join(' '))
	}
}

_app.tsx

import { setColorShades } from 'src/utils/colors'

...
useEffect(() => {
	try {
		setColorShades(COLOR_PRIMARY, ColorTheme.Primary)
	} catch (e) {
		console.warn(e)
	}
}, [])
...
profile
조하운

0개의 댓글