@latte-macchiat-io/latte-vanilla-components 0.0.195 → 0.0.196
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.ts +1 -4
- package/src/theme/baseThemeValues.ts +2 -4
package/package.json
CHANGED
package/src/index.ts
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
// Theme system - Import this first to apply global styles
|
2
2
|
export { themeContract } from './theme/contract.css';
|
3
3
|
export { baseLightTheme, baseDarkTheme } from './theme/baseThemeValues';
|
4
|
-
export { createLightTheme, createDarkTheme } from './theme/createTheme';
|
5
|
-
export type { ThemeOverrides } from './theme/createTheme';
|
4
|
+
export { createLightTheme, createDarkTheme, type ThemeOverrides } from './theme/createTheme';
|
6
5
|
|
7
6
|
// Styles utilities (sprinkles, media queries, etc.)
|
8
7
|
export { sprinkles, type Sprinkles } from './styles/sprinkles.css';
|
@@ -23,8 +22,6 @@ export { Footer, type FooterProps } from './components/Footer';
|
|
23
22
|
|
24
23
|
export { Nav, type NavProps } from './components/Nav';
|
25
24
|
|
26
|
-
export { Heading, type HeadingProps } from './components/Heading';
|
27
|
-
|
28
25
|
export { Icon, type IconProps } from './components/Icon';
|
29
26
|
|
30
27
|
export { Modal, type ModalProps } from './components/Modal';
|
@@ -1,5 +1,3 @@
|
|
1
|
-
import { breakpoints } from '../styles/mediaqueries';
|
2
|
-
|
3
1
|
// Base theme values that can be imported and extended by apps
|
4
2
|
export const baseLightTheme = {
|
5
3
|
colors: {
|
@@ -39,7 +37,7 @@ export const baseLightTheme = {
|
|
39
37
|
heading: 'system-ui, sans-serif',
|
40
38
|
mono: '"Fira Code", monospace',
|
41
39
|
},
|
42
|
-
maxWidth:
|
40
|
+
maxWidth: '1500px',
|
43
41
|
fontSizes: {
|
44
42
|
xs: '13px',
|
45
43
|
sm: '15px',
|
@@ -656,7 +654,7 @@ export const baseDarkTheme = {
|
|
656
654
|
heading: 'system-ui, sans-serif',
|
657
655
|
mono: '"Fira Code", monospace',
|
658
656
|
},
|
659
|
-
maxWidth:
|
657
|
+
maxWidth: '1500px',
|
660
658
|
fontSizes: {
|
661
659
|
xs: '13px',
|
662
660
|
sm: '15px',
|