@scalar/themes
Advanced tools
Comparing version 0.9.2 to 0.9.3
# @scalar/themes | ||
## 0.9.3 | ||
### Patch Changes | ||
- 0fae180: chore: move client app to use @scalar/themes tailwind preset | ||
## 0.9.2 | ||
@@ -4,0 +10,0 @@ |
@@ -12,2 +12,7 @@ declare const _default: { | ||
}; | ||
borderWidth: { | ||
DEFAULT: string; | ||
'1/2': string; | ||
'0': string; | ||
}; | ||
boxShadow: { | ||
@@ -20,2 +25,3 @@ DEFAULT: string; | ||
border: string; | ||
'border-1/2': string; | ||
}; | ||
@@ -108,5 +114,2 @@ fontFamily: { | ||
}; | ||
borderWidth: { | ||
DEFAULT: string; | ||
}; | ||
brightness: { | ||
@@ -116,2 +119,5 @@ lifted: string; | ||
}; | ||
spacing: { | ||
px: string; | ||
}; | ||
}; | ||
@@ -118,0 +124,0 @@ }; |
@@ -18,3 +18,3 @@ { | ||
], | ||
"version": "0.9.2", | ||
"version": "0.9.3", | ||
"engines": { | ||
@@ -21,0 +21,0 @@ "node": ">=18" |
@@ -15,9 +15,15 @@ import pixelPreset from '@rise8/tailwind-pixel-perfect-preset' | ||
}, | ||
borderWidth: { | ||
'DEFAULT': 'var(--scalar-border-width)', | ||
'1/2': 'calc(var(--scalar-border-width) / 2)', | ||
'0': '0', | ||
}, | ||
boxShadow: { | ||
DEFAULT: 'var(--scalar-shadow-1)', | ||
lg: 'var(--scalar-shadow-2)', | ||
md: 'var(--scalar-shadow-1)', | ||
sm: 'rgba(0, 0, 0, 0.09) 0px 1px 4px', | ||
none: '0 0 #0000', | ||
border: 'inset 0 0 0 1px var(--scalar-border-color)', | ||
'DEFAULT': 'var(--scalar-shadow-1)', | ||
'lg': 'var(--scalar-shadow-2)', | ||
'md': 'var(--scalar-shadow-1)', | ||
'sm': 'rgba(0, 0, 0, 0.09) 0px 1px 4px', | ||
'none': '0 0 #0000', | ||
'border': 'inset 0 0 0 1px var(--scalar-border-color)', | ||
'border-1/2': 'inset 0 0 0 .5px var(--scalar-border-color)', | ||
}, | ||
@@ -121,3 +127,2 @@ fontFamily: { | ||
borderColor: { DEFAULT: 'var(--scalar-border-color)' }, | ||
borderWidth: { DEFAULT: 'var(--scalar-border-width)' }, | ||
brightness: { | ||
@@ -127,4 +132,7 @@ lifted: 'var(--scalar-lifted-brightness)', | ||
}, | ||
spacing: { | ||
px: '1px', | ||
}, | ||
}, | ||
}, | ||
} satisfies Partial<Config> |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
122506
2020