Add 'Lara' theme

This commit is contained in:
Mert Sincan 2024-05-05 21:35:38 +01:00
parent 30fa452525
commit 06850f3ed5
177 changed files with 3386 additions and 7 deletions

View file

@ -0,0 +1,25 @@
export default {
root: {
borderRadius: '{rounded.sm}',
width: '1.25rem',
height: '1.25rem',
background: '{form.field.background}',
checkedBackground: '{primary.color}',
checkedHoverBackground: '{primary.hover.color}',
disabledBackground: '{form.field.disabled.background}',
filledBackground: '{form.field.filled.background}',
borderColor: '{form.field.border.color}',
hoverBorderColor: '{form.field.hover.border.color}',
checkedBorderColor: '{primary.color}',
checkedHoverBorderColor: '{primary.hover.color}',
invalidBorderColor: '{form.field.invalid.border.color}',
boxShadow: '{form.field.box.shadow}'
},
icon: {
size: '0.875rem',
color: '{form.field.color}',
checkedColor: '{primary.inverse.color}',
checkedHoverColor: '{primary.inverse.color}',
disabledColor: '{form.field.disabled.color}'
}
};

View file

@ -0,0 +1,6 @@
{
"main": "./index.cjs.js",
"module": "./index.esm.js",
"unpkg": "./index.min.js",
"types": "./index.d.ts"
}