초보 개발자의 기록

CSS 색상 본문

Korea/HTML&CSS

CSS 색상

bambinodeveloper 2020. 12. 4. 17:25
728x90

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.net/

 

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

flatuicolors.com/palette/tr

 

Flat UI Colors 2 - 14 Color Palettes, 280 colors 🎨

280 handpicked colors ready for COPY & PASTE

flatuicolors.com

cssgradient.io/

 

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

 

728x90
반응형

'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