[생활코딩] 타이포그래피 - color
본문 바로가기
프레임워크/CSS

[생활코딩] 타이포그래피 - color

by 은돌1113 2022. 1. 24.

color라는 속성 자체는 어렵지 않지만, 원하는 컬러를 지정하는 부분이 조금 어렵습니다.

 

컬러를 지정하는 방법에는 크게 세가지 방식이 있습니다.

 

Color Name vs hex vs rgb

 

  [ Color Name을 사용 할 경우 ]  

<!DOCTYPE html>
<html>
  <head>
    <style>
      #tomato {
        color: tomato;
      }

      #powderblue {
        color: powderblue;
      }
    </style>
  </head>
  <body>
    <h1 id="tomato">Hello World</h1>
    <h1 id="powderblue">Hello World</h1>
  </body>
</html>

 

  [ hex를 사용 할 경우 ]  

아래와 같이 #색상코드 형태로 사용 합니다.

<!DOCTYPE html>
<html>
  <head>
    <style>
      h1 {
        color: #ffc747;
      }
    </style>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>

 

  [ rgb를 사용 할 경우 ]  

아래와 같이 red의 r, green의 g, blue의 b를 합친 rgb() 형태로 색상 코드가 나옵니다.

<!DOCTYPE html>
<html>
  <head>
    <style>
      h1 {
        color: rgb(244, 83, 116);
      }
    </style>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>

 

CSS RGB and RGBA Colors

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

댓글