![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
You would think that, web developers having assigned numeric values to colors, that these systems would be precise, or even reliable...okay, perhaps somewhat predictable?
Not so!
I'm not asking for weird girl colors: all I wanted was forest green text on a cream background.
I fially got a result of forest green for at least the h1 heading.
Cream has been a lot more adventurous. Using the hex, rgb, or even the color name "cream," I have gotten lemon chiffon, gray, and default white. I even tried settling for cornsilk, but that gave me bisque. And bisque can be another weeny color word that varies from off-white to beige, which are even more variable as colors categories.
So, can I borrow some eyeballs out there? (I promise to let you keep the tooth.)
What colors are on this webpage: https://kestrell7.github.io
Not so!
I'm not asking for weird girl colors: all I wanted was forest green text on a cream background.
I fially got a result of forest green for at least the h1 heading.
Cream has been a lot more adventurous. Using the hex, rgb, or even the color name "cream," I have gotten lemon chiffon, gray, and default white. I even tried settling for cornsilk, but that gave me bisque. And bisque can be another weeny color word that varies from off-white to beige, which are even more variable as colors categories.
So, can I borrow some eyeballs out there? (I promise to let you keep the tooth.)
What colors are on this webpage: https://kestrell7.github.io
no subject
Date: 2020-10-01 01:57 pm (UTC)rgb(255, 248, 220)
.no subject
Date: 2020-10-01 02:16 pm (UTC)no subject
Date: 2020-10-01 02:49 pm (UTC)If you want to adjust the transparency, add an alpha channel:
Just replace
alpha
with either a number between 0 and 1, or a percentage:rgba(255 0 0 / .1)
andrgba(255, 0, 0, 10%)
are both .rgba(255 0 0 / .5)
andrgba(255, 0, 0, 50%)
are both .rgba(255 0 0 / 1)
andrgba(255, 0, 0, 100%)
are both .I know that's a lot more than you asked for, but there really are many different ways to write RGB colors. Just use whichever you feel most comfortable with, is my advice.
no subject
Date: 2020-10-01 02:56 pm (UTC)no subject
Date: 2020-10-01 03:01 pm (UTC)no subject
Date: 2020-10-01 03:03 pm (UTC)