summaryrefslogtreecommitdiffstats
path: root/src/objects/_switch.vars.scss
blob: 6f56ec7d14e42c79cd626b2e41fb7becfe16349b (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@use "sass:map";
@use "pkg:iro-sass/props";
@use "../core.vars" as core;

$inline-size: props.def(--o-switch--inline-size, props.get(core.$size--350)) !default;
$block-size: props.def(--o-switch--block-size, props.get(core.$size--200)) !default;
$label-gap: props.def(--o-switch--label-gap, props.get(core.$size--125)) !default;
$border-width: props.def(--o-switch--border-width, props.get(core.$border-width--medium)) !default;
$pad-i: props.def(--o-switch--pad-i, props.get(core.$size--65)) !default;
$pad-b: props.def(--o-switch--pad-b, props.get(core.$size--65)) !default;
$rounding: props.def(--o-switch--rounding, props.get(core.$rounding--sm)) !default;
$spacing-sibling: props.def(--o-switch--spacing-sibling, props.get(core.$size--300)) !default;

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

$track-bg-color: props.def(
	--o-switch--track-bg-color,
	props.get(core.$theme, --border),
	"color"
) !default;
$handle-border-color: props.def(
	--o-switch--handle-border-color,
	props.get(core.$theme, --text-mute-more),
	"color"
) !default;
$handle-bg-color: props.def(
	--o-switch--handle-bg-color,
	props.get(core.$theme, --base, --50),
	"color"
) !default;

$hover--label-color: props.def(
	--o-switch--hover--label-color,
	props.get(core.$theme, --heading),
	"color"
) !default;
$hover--handle-border-color: props.def(
	--o-switch--hover--handle-border-color,
	props.get(core.$theme, --text-mute),
	"color"
) !default;

$accent--handle-border-color: props.def(
	--o-switch--accent--handle-border-color,
	props.get(core.$theme, --accent, --900),
	"color"
) !default;

$accent--hover--handle-border-color: props.def(
	--o-switch--accent--hover--handle-border-color,
	props.get(core.$theme, --accent, --1000),
	"color"
) !default;

$disabled--label-color: props.def(
	--o-switch--disabled--label-color,
	props.get(core.$theme, --text-disabled),
	"color"
) !default;
$disabled--track-bg-color: props.def(
	--o-switch--disabled--track-bg-color,
	props.get(core.$theme, --border),
	"color"
) !default;
$disabled--handle-border-color: props.def(
	--o-switch--disabled--handle-border-color,
	props.get(core.$theme, --border-strong),
	"color"
) !default;
$disabled--handle-bg-color: props.def(
	--o-switch--disabled--handle-bg-color,
	props.get(core.$theme, --base, --50),
	"color"
) !default;

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