move discord colors to global vars

This commit is contained in:
41666 2019-03-19 21:46:42 -05:00
parent 641082f765
commit 90ef13310f
2 changed files with 4 additions and 5 deletions

View file

@ -5,11 +5,6 @@ import styled from 'styled-components'
import MediaQuery from '../../kit/media' import MediaQuery from '../../kit/media'
const Outer = styled.div` const Outer = styled.div`
--not-quite-black: #23272A;
--dark-but-not-black: #2C2F33;
--greyple: #99AAB5;
--blurple: var(--c-discord);
background-color: var(--dark-but-not-black); background-color: var(--dark-but-not-black);
padding: 10px; padding: 10px;
text-align: left; text-align: left;

View file

@ -44,6 +44,10 @@ body {
:root { :root {
${() => getColors()} ${() => getColors()}
--not-quite-black: #23272A;
--dark-but-not-black: #2C2F33;
--greyple: #99AAB5;
--blurple: var(--c-discord);
} }
::selection { ::selection {