use constant colors (#896)

main
Michael Fix 5 years ago committed by repo-ranger[bot]
parent 9e929ff88c
commit 4c85fffbc7

@ -1,6 +1,6 @@
import React from 'react' import React from 'react'
import Head from 'next/head' import Head from 'next/head'
import { THEMES, THEMES_HASH } from '../lib/constants' import { THEMES, THEMES_HASH, COLORS } from '../lib/constants'
import Reset from './style/Reset' import Reset from './style/Reset'
import Font from './style/Font' import Font from './style/Font'
import Typography from './style/Typography' import Typography from './style/Typography'
@ -54,7 +54,7 @@ export const MetaTags = React.memo(() => (
<meta name="og:title" content={title} /> <meta name="og:title" content={title} />
<meta name="og:description" content={description} /> <meta name="og:description" content={description} />
<meta name="og:image" content="/static/brand/banner.png" /> <meta name="og:image" content="/static/brand/banner.png" />
<meta name="theme-color" content="#121212" /> <meta name="theme-color" content={COLORS.BLACK} />
<title>{title}</title> <title>{title}</title>
<link rel="shortcut icon" href="/favicon.ico" /> <link rel="shortcut icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />

@ -170,7 +170,7 @@ export default () => (
*::selection { *::selection {
background: rgba(255, 255, 255, 0.99); background: rgba(255, 255, 255, 0.99);
color: #121212; color: ${COLORS.BLACK};
} }
kbd { kbd {

Loading…
Cancel
Save