Change bg colour

This commit is contained in:
r-freeman 2023-01-23 19:51:54 +00:00
parent 8027db6a43
commit bc9b674a6a
3 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@ export default function App({Component, pageProps, router}: AppProps) {
<> <>
<div className="fixed inset-0 flex justify-center sm:px-8"> <div className="fixed inset-0 flex justify-center sm:px-8">
<div className="flex w-full max-w-7xl lg:px-8"> <div className="flex w-full max-w-7xl lg:px-8">
<div className="w-full bg-white dark:bg-black dark:ring-zinc-300/20"/> <div className="w-full bg-white dark:bg-black-950 dark:ring-zinc-300/20"/>
</div> </div>
</div> </div>
<div className="relative"> <div className="relative">

View File

@ -70,7 +70,7 @@ export default function Document() {
/> />
</Head> </Head>
<script dangerouslySetInnerHTML={{__html: modeScript}}/> <script dangerouslySetInnerHTML={{__html: modeScript}}/>
<body className="flex h-full flex-col dark:bg-black"> <body className="flex h-full flex-col dark:bg-black-950">
<Main/> <Main/>
<NextScript/> <NextScript/>
</body> </body>

View File

@ -11,6 +11,9 @@ module.exports = {
colors: { colors: {
green: { green: {
950: '#1fdf64' 950: '#1fdf64'
},
black: {
950: '#0a0a0a'
} }
} }
}, },