@import "./../../common/normalize.css";

.unit-px {
  font-size: 20px;
}
/* em 단위 */

.unit-em-wrapper {
  font-size: 1.5em;
}
.unit-em {
  font-size: 1.5em;
}
.unit-rem {
  font-size: 0.75rem;
}
.unit-rem-wrapper {
  font-size: 0.7rem;
}
.unit-percentage-wrapper {
  font-size: 1.5rem;
}
.unit-percentage {
  font-size: 150%;
}
.unit-vw {
  font-size: 3vw;
}

/*  */
.unit-number {
  font-size: 10px;
  line-height: 1;
  p {
    font-size: 20px;
  }
}

/* 색상값 */

.unit-color-name {
  color: darkgreen;
}
.unit-color-hex {
  color: #ff0000;
  background-color: #00f;
}
.unit-color-rgb {
  color: rgb(0, 255, 0);
  background-color: rgb(255 255 0);
}
/* .unit-color-hsla {
  color: hsl(310%, 50%, 50%);
  background-color: hsla(110 50 20 / 0.5);
} */

.unit-color-hsla {
  color: hsla(310, 50%, 50%, 0.5);
  background-color: hsla(110 50% 20% / 0.5);
}
