Skip to content

Instantly share code, notes, and snippets.

@palforce
palforce / tabler-icons.css
Created May 1, 2026 02:03
BossFurn Sneat Theme — tabler-icons.css
/* =========================================================
Tabler Icons (Filled) — Local Copy
MIT License — https://tabler.io/icons
========================================================= */
.ti {
display: inline-block;
width: 1.2em;
height: 1.2em;
stroke-width: 0;
@palforce
palforce / theme.css
Created May 1, 2026 02:02
BossFurn Sneat Theme — theme.css
/* =========================================================
BossFurn Sneat Theme — Local Hosted
Option B: Mini Sidebar + Hover Flyout
Light + Dark Mode (manual toggle)
Tabler Icons (Filled)
========================================================= */
:root {
--primary: #e07820;
--primary-dark: #c05f08;
const sidebar = document.getElementById("sidebar");
const main = document.getElementById("main");
const overlay = document.getElementById("overlay");
const menuToggle = document.getElementById("menuToggle");
const themeToggle = document.getElementById("themeToggle");
menuToggle.addEventListener("click", () => {
if (window.innerWidth > 900) {
sidebar.classList.toggle("collapsed");
main.classList.toggle("shifted");