일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹개발기초
- 밤비노
- C
- mysql
- 리액트프로젝트
- BCIT
- msa개념
- 웹개발
- coding test
- Programming
- 안드로이드
- MSA
- 웹개발자
- jsp
- MVC
- Java
- job
- DB
- SpringFramework
- two pointers
- CSS
- Bambino
- 자바
- sql
- 데이터베이스
- servlet
- microservices
- html
- 코드잇
- jvm메모리구조
- Today
- Total
초보 개발자의 기록
CSS 색상 본문
CSS색상
색상값을 단어로만 부여할 때의 단점은 세부적인 색상 표현이 불가능하다는 점
해결책?
RGB (Reb Green Blue) 빛의 3 원색을 컴퓨터 분야에서 표현할 수 있다.
16진수(hexadecimal)로 넣어 세부적인 색상을 표현할 수 있다
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1 style="background-color:Tomato">Tomato</h1>
<h1 style="background-color:Orange">Orange</h1>
<h1 style="background-color:rgb(255,0,0)">DodgerBlue</h1>
<h1 style="background-color:MediumSeaGreen">MediumSeaGreen</h1>
<h1 style="background-color:Grey">Grey</h1>
<h1 style="background-color:SlateBlue">SlateBlue</h1>
<h1 style="background-color:Violet">Violet</h1>
<h1 style="background-color:LightGrey">LightGrey</h1>
</body>
</html>
자주 사용할 사이트
BrandColors - official brand color hex codes
Close Modal About BrandColors BrandColors was created by DesignBombs. The goal was to create a helpful reference for the brand color codes that are needed most often. It's been featured by Smashing Magazine, CSS-Tricks, Web Design Depot, Tuts+, and over 2
brandcolors.net
Flat UI Colors 2 - 14 Color Palettes, 280 colors 🎨
280 handpicked colors ready for COPY & PASTE
flatuicolors.com
CSS Gradient — Generator, Maker, and Background
As a free css gradient generator tool, this website lets you create a colorful gradient background for your website, blog, or social media profile.
cssgradient.io
'Korea > HTML&CSS' 카테고리의 다른 글
CSS 배경 (0) | 2020.12.04 |
---|---|
HTML & CSS 기초 (0) | 2020.12.01 |
HTML기초 (0) | 2020.12.01 |
HTML과 CSS를 공부하는 이유와 목표 (0) | 2020.11.30 |