Files
dinbestehjelper.no/assets/sass/beauty/libs/_vars.scss
T
Astral04andClaude Opus 4.8 4e1a69c8d4 Initial import of Din Beste Hjelper site
CodeIgniter 3 app for dinbestehjelper.no. Excludes vendor/, local backup
folders (new/, archive/, archived/) and DB dumps (*.sql) via .gitignore.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01P16ttGUge8zj91dm6WrmEb
2026-08-04 12:52:43 +00:00

54 lines
959 B
SCSS

// 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%)
)
);