summaryrefslogtreecommitdiffstats
path: root/src/objects/_tabbar.vars.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2024-11-23 14:06:13 +0100
committerVolpeon <git@volpeon.ink>2024-11-23 14:06:13 +0100
commit036550a79dc44aedf1ff1e8c7a58a7994a901820 (patch)
treedf4320c14143c0e57e76e7000d0b7291e14031b1 /src/objects/_tabbar.vars.scss
parentTabs (diff)
downloadiro-design-036550a79dc44aedf1ff1e8c7a58a7994a901820.tar.gz
iro-design-036550a79dc44aedf1ff1e8c7a58a7994a901820.tar.bz2
iro-design-036550a79dc44aedf1ff1e8c7a58a7994a901820.zip
o-tabs -> o-tabbar
Diffstat (limited to 'src/objects/_tabbar.vars.scss')
-rw-r--r--src/objects/_tabbar.vars.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/objects/_tabbar.vars.scss b/src/objects/_tabbar.vars.scss
new file mode 100644
index 0000000..f4486d6
--- /dev/null
+++ b/src/objects/_tabbar.vars.scss
@@ -0,0 +1,25 @@
1@use 'sass:map';
2@use 'sass:string';
3@use 'iro-sass/src/props';
4@use '../core.vars' as core;
5
6$block-size: props.def(--o-tabbar--block-size, props.get(core.$size--700)) !default;
7$rounding: props.def(--o-tabbar--rounding, props.get(core.$rounding)) !default;
8$spacing: props.def(--o-tabbar--spacing, props.get(core.$size--400)) !default;
9$tab--pad-i: props.def(--o-tabbar--tab--pad-i, props.get(core.$size--50)) !default;
10
11$indicator--width: props.def(--o-tabbar--indicator--width, props.get(core.$border-width--medium)) !default;
12
13$key-focus--border-width: props.def(--o-tabbar--key-focus--border-width, props.get(core.$key-focus--border-width)) !default;
14$key-focus--border-offset: props.def(--o-tabbar--key-focus--border-offset, props.get(core.$key-focus--border-offset)) !default;
15$key-focus--outline-width: props.def(--o-tabbar--key-focus--outline-width, props.get(core.$key-focus--outline-width)) !default;
16
17$tab--text-color: props.def(--o-tabbar--tab--text-color, props.get(core.$theme, --text-mute), 'color') !default;
18$tab--selected--text-color: props.def(--o-tabbar--tab--selected--text-color, props.get(core.$theme, --heading), 'color') !default;
19$tab--accent--text-color: props.def(--o-tabbar--tab--accent--text-color, props.get(core.$theme, --accent, --1100), 'color') !default;
20
21$railing--bg-color: props.def(--o-tabbar--railing--bg-color, props.get(core.$theme, --border-mute), 'color') !default;
22
23$key-focus--text-color: props.def(--o-tabbar--key-focus--text-color, props.get(core.$theme, --focus, --text), 'color') !default;
24$key-focus--border-color: props.def(--o-tabbar--key-focus--border-color, props.get(core.$theme, --focus, --border), 'color') !default;
25$key-focus--outline-color: props.def(--o-tabbar--key-focus--outline-color, props.get(core.$theme, --focus, --outline), 'color') !default;