summaryrefslogtreecommitdiffstats
path: root/src/objects/_tabbar.vars.scss
blob: d26f302ba0fea994fdaa066e50ae6ae86d1afc5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@use "sass:map";
@use "sass:string";
@use "pkg:iro-sass/props";
@use "../core.vars" as core;

$block-size: props.def(--o-tabbar--block-size, props.get(core.$size--700)) !default;
$rounding: props.def(--o-tabbar--rounding, props.get(core.$rounding--sm)) !default;
$spacing: props.def(--o-tabbar--spacing, props.get(core.$size--400)) !default;
$tab--pad-i: props.def(--o-tabbar--tab--pad-i, props.get(core.$size--50)) !default;

$border--width: props.def(--o-tabbar--border--width, props.get(core.$border-width--thin)) !default;
$indicator--width: props.def(
	--o-tabbar--indicator--width,
	props.get(core.$border-width--medium)
) !default;

$key-focus--border-width: props.def(
	--o-tabbar--key-focus--border-width,
	props.get(core.$key-focus--border-width)
) !default;
$key-focus--border-offset: props.def(
	--o-tabbar--key-focus--border-offset,
	props.get(core.$key-focus--border-offset)
) !default;
$key-focus--outline-width: props.def(
	--o-tabbar--key-focus--outline-width,
	props.get(core.$key-focus--outline-width)
) !default;

$tab--text-color: props.def(
	--o-tabbar--tab--text-color,
	props.get(core.$theme, --text-mute),
	"color"
) !default;
$tab--selected--text-color: props.def(
	--o-tabbar--tab--selected--text-color,
	props.get(core.$theme, --heading),
	"color"
) !default;
$tab--accent--text-color: props.def(
	--o-tabbar--tab--accent--text-color,
	props.get(core.$theme, --accent, --1100),
	"color"
) !default;

$railing--bg-color: props.def(
	--o-tabbar--railing--bg-color,
	props.get(core.$theme, --border-mute),
	"color"
) !default;

$key-focus--text-color: props.def(
	--o-tabbar--key-focus--text-color,
	props.get(core.$theme, --focus, --text),
	"color"
) !default;
$key-focus--border-color: props.def(
	--o-tabbar--key-focus--border-color,
	props.get(core.$theme, --focus, --border),
	"color"
) !default;
$key-focus--outline-color: props.def(
	--o-tabbar--key-focus--outline-color,
	props.get(core.$theme, --focus, --outline),
	"color"
) !default;