@shuriken-ui/tailwind 3.1.3 → 4.0.0-alpha.10

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/dist/themes.mjs DELETED
@@ -1,113 +0,0 @@
1
- import colors from 'tailwindcss/colors';
2
- import { fontFamily } from 'tailwindcss/defaultTheme';
3
-
4
- const defaultTheme = {
5
- fontFamily: {
6
- sans: fontFamily.sans,
7
- heading: fontFamily.sans,
8
- alt: fontFamily.sans,
9
- mono: fontFamily.mono
10
- },
11
- extend: {
12
- colors: {
13
- primary: colors.violet,
14
- "primary-invert": colors.white,
15
- muted: colors.slate,
16
- info: colors.sky,
17
- success: colors.teal,
18
- warning: colors.amber,
19
- danger: colors.rose
20
- },
21
- screens: {
22
- xs: { max: "639px" },
23
- lg: "1025px",
24
- ptablet: {
25
- raw: "(min-width: 768px) and (max-width: 1024px) and (orientation: portrait)"
26
- },
27
- ltablet: {
28
- raw: "(min-width: 768px) and (max-width: 1024px) and (orientation: landscape)"
29
- }
30
- },
31
- typography: ({ theme }) => ({
32
- primary: {
33
- css: {
34
- "--tw-prose-links": theme("colors.primary.600"),
35
- "--tw-prose-quote-borders": theme("colors.primary.600"),
36
- "--tw-prose-invert-links": theme("colors.primary.500"),
37
- "--tw-prose-invert-quote-borders": theme("colors.primary.500")
38
- }
39
- },
40
- muted: {
41
- css: {
42
- "--tw-prose-body": theme("colors.muted.700"),
43
- "--tw-prose-headings": theme("colors.muted.800"),
44
- "--tw-prose-lead": theme("colors.muted.600"),
45
- "--tw-prose-bold": theme("colors.muted.800"),
46
- "--tw-prose-counters": theme("colors.muted.500"),
47
- "--tw-prose-bullets": theme("colors.muted.300"),
48
- "--tw-prose-hr": theme("colors.muted.200"),
49
- "--tw-prose-quotes": theme("colors.muted.500"),
50
- "--tw-prose-captions": theme("colors.muted.500"),
51
- "--tw-prose-code": theme("colors.muted.800"),
52
- "--tw-prose-pre-code": theme("colors.muted.800"),
53
- "--tw-prose-pre-bg": theme("colors.muted.100"),
54
- "--tw-prose-th-borders": theme("colors.muted.300"),
55
- "--tw-prose-td-borders": theme("colors.muted.200"),
56
- "--tw-prose-invert-body": theme("colors.muted.400"),
57
- "--tw-prose-invert-headings": theme("colors.muted.100"),
58
- "--tw-prose-invert-lead": theme("colors.muted.300"),
59
- "--tw-prose-invert-bold": theme("colors.muted.300"),
60
- "--tw-prose-invert-counters": theme("colors.muted.400"),
61
- "--tw-prose-invert-bullets": theme("colors.muted.400"),
62
- "--tw-prose-invert-hr": theme("colors.muted.800"),
63
- "--tw-prose-invert-quotes": theme("colors.muted.200"),
64
- "--tw-prose-invert-captions": theme("colors.muted.400"),
65
- "--tw-prose-invert-code": theme("colors.muted.200"),
66
- "--tw-prose-invert-pre-code": theme("colors.muted.200"),
67
- "--tw-prose-invert-pre-bg": theme("colors.muted.800"),
68
- "--tw-prose-invert-th-borders": theme("colors.muted.600"),
69
- "--tw-prose-invert-td-borders": theme("colors.muted.700")
70
- }
71
- },
72
- css: {
73
- h1: {
74
- fontWeight: 700
75
- },
76
- h2: {
77
- fontWeight: 700
78
- },
79
- h3: {
80
- fontWeight: 500
81
- },
82
- h4: {
83
- fontWeight: 500
84
- },
85
- li: {
86
- fontSize: "1.15rem",
87
- padding: "0.35rem 0"
88
- },
89
- em: {
90
- fontSize: "1.1rem",
91
- lineHeight: 1
92
- },
93
- blockquote: {
94
- fontSize: "1.1rem",
95
- lineHeight: 1.4,
96
- fontWeight: 500,
97
- padding: "1.75rem"
98
- },
99
- pre: {
100
- fontFamily: theme("fontFamily.mono")
101
- },
102
- code: {
103
- fontFamily: theme("fontFamily.mono"),
104
- padding: "0.35rem",
105
- fontWeight: 600,
106
- fontSize: "0.95rem !important"
107
- }
108
- }
109
- })
110
- }
111
- };
112
-
113
- export { defaultTheme };