-->
Embed classless CSS for dark mode support and semantic styling using Concrete.css stylesheet
Concrete.css is a lightweight, classless CSS stylesheet focused on simplicity. It provides automatic dark theme support and serves as an excellent foundation for basic websites.
<main>
Add to HTML:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/concrete.css/3.0.0/concrete.min.css">
Or install via npm:
npm install concrete.css
Then import:
import 'concrete.css'
Basic page layout:
<body>
<header>
<h1>Page Title</h1>
</header>
<main>
<section>
<h2>Section Title</h2>
<p>Content goes here...</p>
</section>
</main>
<footer>
<p>Footer content</p>
</footer>
</body>
Navigation:
<nav>
<ul>
<li>ProjectName</li>
<li><a href="#home">Home</a></li>
<li><a href="#docs">Docs</a></li>
</ul>
</nav>
Forms:
<form>
<label for="name">Name:</label>
<input type="text" id="name">
<label for="os">Operating System:</label>
<select id="os">
<option>Linux</option>
<option>MacOS</option>
<option>Windows</option>
</select>
<button type="submit">Submit</button>
</form>
var(--fg)
and var(--bg)
which you can use to set the foreground and background colors for elements.
Add this context to your project via the
ctxs
command line integration: