Full Stack Web Dev - Focusing in #MERN (#MongoDB, #ExpressJS, #React, #Nodejs).
Architectural Technology BSc
Enjoys #Photography (more of a viewer these days)
Aston Villa fan #UTV
Location: #Pembrokeshire #Wales
| Website | https://tedward.net |
Full Stack Web Dev - Focusing in #MERN (#MongoDB, #ExpressJS, #React, #Nodejs).
Architectural Technology BSc
Enjoys #Photography (more of a viewer these days)
Aston Villa fan #UTV
Location: #Pembrokeshire #Wales
| Website | https://tedward.net |
@orbitalmartian yes you can and its the recommended way. You define your colors as variables in :root, then just change the variable values inside the media
```/* 1. Default colors */
:root {
--text-color: #222;
--bg-color: #fff;
}
/* 2. Override for dark mode */
@media (prefers-color-scheme: dark) {
:root {
--text-color: #eee;
--bg-color: #121212;
}
}
/* 3. Use them everywhere! */
body {
color: var(--text-color);
background-color: var(--bg-color);
}```
This is about 1/4 of the spreadsheet of the jobs I have applied for this month.
#ghosted #frontend #fullstack #webdev #jobhunting #suffering
A 2nd stage interview required me to create a web application from scratch to show off my skills as a front end developer. So I made a football tactics board using React and Typescript. Quite happy with it for less than a weeks work.