-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
505 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, | ||
Arial, sans-serif; | ||
margin: auto; | ||
max-width: 38rem; | ||
padding: 2rem; | ||
} | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import type { Config } from 'tailwindcss'; | ||
|
||
export default { | ||
content: [ | ||
'./src/renderer/**/*.{js,jsx,ts,tsx}', | ||
'./node_modules/@tremor/**/*.{js,ts,jsx,tsx,mdx}' | ||
], | ||
theme: { | ||
transparent: 'transparent', | ||
current: 'currentColor', | ||
extend: { | ||
colors: { | ||
// light mode | ||
tremor: { | ||
brand: { | ||
faint: '#eff6ff', // blue-50 | ||
muted: '#bfdbfe', // blue-200 | ||
subtle: '#60a5fa', // blue-400 | ||
DEFAULT: '#3b82f6', // blue-500 | ||
emphasis: '#1d4ed8', // blue-700 | ||
inverted: '#ffffff' // white | ||
}, | ||
background: { | ||
muted: '#f9fafb', // gray-50 | ||
subtle: '#f3f4f6', // gray-100 | ||
DEFAULT: '#ffffff', // white | ||
emphasis: '#374151' // gray-700 | ||
}, | ||
border: { | ||
DEFAULT: '#e5e7eb' // gray-200 | ||
}, | ||
ring: { | ||
DEFAULT: '#e5e7eb' // gray-200 | ||
}, | ||
content: { | ||
subtle: '#9ca3af', // gray-400 | ||
DEFAULT: '#6b7280', // gray-500 | ||
emphasis: '#374151', // gray-700 | ||
strong: '#111827', // gray-900 | ||
inverted: '#ffffff' // white | ||
} | ||
} | ||
}, | ||
boxShadow: { | ||
// light | ||
'tremor-input': '0 1px 2px 0 rgb(0 0 0 / 0.05)', | ||
'tremor-card': | ||
'0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)', | ||
'tremor-dropdown': | ||
'0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)' | ||
}, | ||
borderRadius: { | ||
'tremor-small': '0.375rem', | ||
'tremor-default': '0.5rem', | ||
'tremor-full': '9999px' | ||
}, | ||
fontSize: { | ||
'tremor-label': '0.75rem', | ||
'tremor-default': ['0.875rem', { lineHeight: '1.25rem' }], | ||
'tremor-title': ['1.125rem', { lineHeight: '1.75rem' }], | ||
'tremor-metric': ['1.875rem', { lineHeight: '2.25rem' }] | ||
} | ||
} | ||
}, | ||
safelist: [ | ||
{ | ||
pattern: | ||
/^(bg-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/, | ||
variants: ['hover', 'ui-selected'] | ||
}, | ||
{ | ||
pattern: | ||
/^(text-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/, | ||
variants: ['hover', 'ui-selected'] | ||
}, | ||
{ | ||
pattern: | ||
/^(border-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/, | ||
variants: ['hover', 'ui-selected'] | ||
}, | ||
{ | ||
pattern: | ||
/^(ring-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/ | ||
}, | ||
{ | ||
pattern: | ||
/^(stroke-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/ | ||
}, | ||
{ | ||
pattern: | ||
/^(fill-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/ | ||
} | ||
], | ||
plugins: [require('@headlessui/tailwindcss')] | ||
} satisfies Config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.