add all files

This commit is contained in:
2025-10-04 11:38:07 +02:00
parent 84a1f4eb35
commit 68c8245cef
1010 changed files with 266911 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
// Misc.
$misc: (
z-index-base: 10000
);
// Duration.
$duration: (
transition: 0.2s,
navPanel: 0.5s
);
// Size.
$size: (
border-radius: 4px,
border-width: 1px,
element-height: 3.5em,
element-margin: 2em,
navPanel: 275px
);
// Font.
$font: (
family: ('Open Sans', sans-serif),
family-fixed: ('Courier New', monospace),
weight: 300,
weight-bold: 600
);
// Palette.
$palette: (
bg: #fff,
fg: #4a4a4a,
fg-bold: #2a2a2a,
fg-light: #bbb,
border: #eee,
border-bg: rgba(144,144,144,0.05),
border2: #ddd,
border2-bg: rgba(144,144,144,0.1),
accent1: (
bg: #51c5e8,
fg: mix(#51c5e8, #ffffff, 25%),
fg-bold: #ffffff,
fg-light: mix(#51c5e8, #ffffff, 40%)
),
accent2: (
bg: #1d2726,
fg: mix(#1d2726, #ffffff, 25%),
fg-bold: #ffffff,
fg-light: mix(#1d2726, #ffffff, 40%)
)
);