Skip to content

Instantly share code, notes, and snippets.

@ryanve
Created October 26, 2017 23:02
Show Gist options
  • Save ryanve/186eabec8e8fcc8ef001ca0f5243d0ba to your computer and use it in GitHub Desktop.
Save ryanve/186eabec8e8fcc8ef001ca0f5243d0ba to your computer and use it in GitHub Desktop.
CSS shade vars
:root {
--shade-90: rgba(0, 0, 0, .9);
--shade-80: rgba(0, 0, 0, .8);
--shade-70: rgba(0, 0, 0, .7);
--shade-60: rgba(0, 0, 0, .6);
--shade-50: rgba(0, 0, 0, .5);
--shade-40: rgba(0, 0, 0, .4);
--shade-30: rgba(0, 0, 0, .3);
--shade-20: rgba(0, 0, 0, .2);
--shade-10: rgba(0, 0, 0, .1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment