1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-16 05:54:53 +02:00
This commit is contained in:
Rico Sta. Cruz
2017-03-05 02:38:14 +08:00
parent 1b6f6bb36a
commit 541187c3ea
2 changed files with 8 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ a {
color: #0000ff80; /* rgba(0, 0, 255, 0.5) */
color: hwb(90, 0%, 0%, 0.5); /* like hsl() but easier for humans */
color: hsl(90deg 90% 70%%); /* hsl(180, 90%, 70%) -- supports deg */
color: hsl(90deg 90% 70%); /* hsl(180, 90%, 70%) -- supports deg */
color: hsl(90deg 90% 70% / 30%); /* hsla(180, 90%, 70%, 0.3) */
color: rgb(30 60 90 / 30%); /* rgba(30, 60, 90, 0.3) */
}