LoginSignup
1
0

More than 1 year has passed since last update.

テキストの色をグラデーションにする

Last updated at Posted at 2022-12-05

ひとりCSS Advent Calendar 2022 6日目です。

テキストの色をグラデーションにしてみます。

できた

image.png

<p class="text-gradient">text gradient</p>
:root {
  --color1: #edb658;
  --color2: #e7719b;
}

.text-gradient {
  font-size: 10vw;
  font-weight: 600;
  font-family: Avenir, sans-sarif;
  color: var(--color1);
  background: linear-gradient(45deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

メモ

遊んでみた

image.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0