### CSS Dark Mode Styling Source: https://github.com/flaviocopes/bootcamp-2024/blob/mod12/public/offline.html This CSS snippet defines background colors and SVG path fills for a webpage. It includes a media query to adjust styles when the user's operating system or browser is set to prefer dark mode, ensuring a consistent visual experience. ```css body { background-color: #fff; } svg path { fill: #000; } @media (prefers-color-scheme: dark) { body { background-color: #000000; } svg path { fill: #fff; } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.