I have a webpage that looks like this:
This is my _app.tsx
file:
JavaScript
x
29
29
1
import '../styles/globals.css'
2
import type { AppProps } from 'next/app'
3
import { createTheme } from '@arwes/design'
4
import { ThemeProvider, Global, css } from '@emotion/react'
5
import { globalStyles } from '../shared/styles.js'
6
7
function MyApp({ Component, pageProps }: AppProps) {
8
const theme = createTheme();
9
return (
10
<ThemeProvider theme={theme}>
11
{globalStyles}
12
<div style={{
13
marginBottom: theme.space(2),
14
borderBottom: `${theme.outline(2)}px solid ${theme.palette['primary'].main}`,
15
padding: theme.space(2),
16
backgroundColor: theme.palette.neutral.elevate(2),
17
textShadow: `0 0 ${theme.shadowBlur(1)}px ${theme.palette['primary'].main}`,
18
color: theme.palette['primary'].main
19
}}>
20
Futuristic Sci-Fi UI Web Framework
21
</div>
22
23
<Component {pageProps} />
24
</ThemeProvider>
25
)
26
}
27
28
export default MyApp
29
And this is shared/styles.js
:
JavaScript
1
26
26
1
import { css, Global, keyframes } from '@emotion/react'
2
import styled from '@emotion/styled'
3
4
export const globalStyles = (
5
<Global
6
styles={css`
7
html,
8
body {
9
margin: 0;
10
background: papayawhip;
11
min-height: 100%;
12
font-size: 24px;
13
}
14
`}
15
/>
16
)
17
18
export const blueOnBlack = (theme) => css`
19
marginBottom: ${theme.space(2)};
20
borderBottom: ${theme.outline(2)}px solid ${theme.palette['primary'].main};
21
padding: ${theme.space(2)};
22
backgroundColor: ${theme.palette.neutral.elevate(2)};
23
textShadow: 0 0 ${theme.shadowBlur(1)}px ${theme.palette['primary'].main};
24
color: ${theme.palette['primary'].main};
25
`
26
Notice that blueOnBlack
is an attempt to put the Futuristic Sci-Fi UI Web Framework
style into its own importable variable.
The problem is that when I put blueOnBlack
into the _app.tsx
as the style for the Futuristic Sci-Fi UI Web Framework
div tag, it fails.
This is _app.tsx
with blueOnBlack
imported:
JavaScript
1
22
22
1
import '../styles/globals.css'
2
import type { AppProps } from 'next/app'
3
import { createTheme } from '@arwes/design'
4
import { ThemeProvider, Global, css } from '@emotion/react'
5
import { globalStyles, blueOnBlack } from '../shared/styles.js'
6
7
function MyApp({ Component, pageProps }: AppProps) {
8
const theme = createTheme();
9
return (
10
<ThemeProvider theme={theme}>
11
{globalStyles}
12
<div style={blueOnBlack(theme)}>
13
Futuristic Sci-Fi UI Web Framework
14
</div>
15
16
<Component {pageProps} />
17
</ThemeProvider>
18
)
19
}
20
21
export default MyApp
22
The resulting webpage looks like this,
It’s almost right… but it dropped the background color. Why is it different?
Advertisement
Answer
I changed shared/styles.js
from:
JavaScript
1
26
26
1
import { css, Global, keyframes } from '@emotion/react'
2
import styled from '@emotion/styled'
3
4
export const globalStyles = (
5
<Global
6
styles={css`
7
html,
8
body {
9
margin: 0;
10
background: papayawhip;
11
min-height: 100%;
12
font-size: 24px;
13
}
14
`}
15
/>
16
)
17
18
export const blueOnBlack = (theme) => css`
19
marginBottom: ${theme.space(2)};
20
borderBottom: ${theme.outline(2)}px solid ${theme.palette['primary'].main};
21
padding: ${theme.space(2)};
22
backgroundColor: ${theme.palette.neutral.elevate(2)};
23
textShadow: 0 0 ${theme.shadowBlur(1)}px ${theme.palette['primary'].main};
24
color: ${theme.palette['primary'].main};
25
`
26
to this:
JavaScript
1
26
26
1
import { css, Global, keyframes } from '@emotion/react'
2
import styled from '@emotion/styled'
3
4
export const globalStyles = (
5
<Global
6
styles={css`
7
html,
8
body {
9
margin: 0;
10
background: papayawhip;
11
min-height: 100%;
12
font-size: 24px;
13
}
14
`}
15
/>
16
)
17
18
export const blueOnBlack = (theme) => styled.div={
19
marginBottom: theme.space(2),
20
borderBottom: theme.outline(2) + 'px solid' + theme.palette['primary'].main,
21
padding: theme.space(2),
22
backgroundColor: theme.palette.neutral.elevate(2),
23
textShadow: '0 0 ' + theme.shadowBlur(1) + 'px ' + theme.palette['primary'].main,
24
color: theme.palette['primary'].main
25
}
26
And then it ran and gave me the correct styling including the black background on the text. Notice that I’m using styled.div
instead of css