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 |
29 | 30 | 31 |
Tags
- Prometheus
- typescript
- AX210
- live share
- Shadow DOM
- RTL8852BE
- Grafana
- custom element
- javascript
- webpack
- 우아한테크코스 레벨3
- 터치 스와이프
- Docker
- browserslist
- 유한 상태 머신
- web component
- docker-compose
- 무선랜카드 교체
- react
- github Actions
- CSS
- react-dom
- 우아한테크코스
- 우테코
- GitHub Pages
- scroll-snap
- HTML
- 데모데이
- swiper
- fastify
Archives
- Today
- Total
목록Color (1)
IT일상
javascript에서 RGB ↔ HSL 변환하기
리뉴얼 된 블로그로 보기: https://solo5star.dev/posts/41/ 먼저, "#ffffff" 16진수 표현을 RGB로 변환하기 /** * @param {string} hexColor #ffffff 와 같이 16진수 형태로 작성된 색상 문자열 * @returns {[number, number, number]} R, G, B 배열 (0 ~ 255) */ function hexColorToRGB(hexColor) { const rgb = hexColor.startsWith('#') ? hexColor.slice(1) : hexColor; const [r, g, b] = [rgb.slice(0, 2), rgb.slice(2, 4), rgb.slice(4, 6)].map((hex) => Numbe..
프론트엔드
2023. 4. 30. 00:17