CSS Colors

These are some common colors I use in CSS, this is mostly a quick reference for myself. I imagine this list will grow with time.

blackish
gray-light
white
whitish
steel
neon-green
green
green-light
jade
hunter-green
dark-blue
blue
blue-light
blue-very-light
violet
violet-light
mauve
pink
purple
sunset
sunset-light
orangered
max-red
yellow
:root {
  --blackish: rgba(0, 0, 0, 0.98);
  --gray-light: rgba(242, 242, 242, 0.6);
  --white: rgba(255, 255, 255, 1);
  --whitish: rgb(225, 225, 225);
  --steel: rgb(108, 149, 153);
  --neon-green: #59f02b;
  --green: #19d457;
  --green-light: #61f291;
  --jade: #45a164;
  --hunter-green: #405c37;
  --dark-blue: #315db5;
  --blue: #477eed;
  --blue-light: #53d3e0;
  --blue-very-light: #a7f6ff;
  --violet: #9198e5;
  --violet-light: #b4bbff;
  --mauve: #cc71c2;
  --pink: #bf2c7f;
  --purple: #b638f5;
  --sunset: #ff7575;
  --sunset-light: #ffb585;
  --orangered: #fa5f5f;
  --max-red: #de1a1a;
  --yellow: #fad14b;
}