72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
export default {
|
|
tablist: {
|
|
borderWidth: '0',
|
|
background: '{content.background}',
|
|
borderColor: '{content.border.color}'
|
|
},
|
|
tab: {
|
|
borderWidth: '2px 0 0 0',
|
|
borderColor: 'transparent',
|
|
hoverBorderColor: 'transparent',
|
|
activeBorderColor: '{primary.color}',
|
|
color: '{text.muted.color}',
|
|
hoverColor: '{text.color}',
|
|
activeColor: '{primary.color}',
|
|
padding: '1rem 1.25rem',
|
|
fontWeight: '600',
|
|
margin: '0',
|
|
focusRing: {
|
|
width: '{focus.ring.width}',
|
|
style: '{focus.ring.style}',
|
|
color: '{focus.ring.color}',
|
|
offset: '{focus.ring.offset}',
|
|
shadow: 'inset {focus.ring.shadow}'
|
|
}
|
|
},
|
|
tabpanel: {
|
|
background: '{content.background}',
|
|
color: '{content.color}',
|
|
padding: '0.875rem 1.125rem 1.125rem 1.125rem'
|
|
},
|
|
navButton: {
|
|
background: '{content.background}',
|
|
color: '{text.muted.color}',
|
|
hoverColor: '{text.color}',
|
|
width: '2.5rem',
|
|
focusRing: {
|
|
width: '{focus.ring.width}',
|
|
style: '{focus.ring.style}',
|
|
color: '{focus.ring.color}',
|
|
offset: '{focus.ring.offset}',
|
|
shadow: 'inset {focus.ring.shadow}'
|
|
}
|
|
},
|
|
activeBar: {
|
|
height: '0',
|
|
bottom: '0',
|
|
background: 'transparent'
|
|
},
|
|
colorScheme: {
|
|
light: {
|
|
navButton: {
|
|
shadow: '0px 0px 10px 50px rgba(255, 255, 255, 0.6)'
|
|
},
|
|
tab: {
|
|
background: '{surface.50}',
|
|
hoverBackground: '{surface.100}',
|
|
activeBackground: '{surface.0}'
|
|
}
|
|
},
|
|
dark: {
|
|
navButton: {
|
|
shadow: '0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)'
|
|
},
|
|
tab: {
|
|
background: '{surface.800}',
|
|
hoverBackground: '{surface.700}',
|
|
activeBackground: '{surface.900}'
|
|
}
|
|
}
|
|
}
|
|
};
|