返回 oh-my-ppt
tailwind.config.js
根目录 / tailwind.config.js
1 import tailwindcss from 'tailwindcss'
2
3 /** @type {import('tailwindcss').Config} */
4 export default {
5 content: [
6 './src/renderer/index.html',
7 './src/renderer/src/**/*.{js,ts,jsx,tsx}',
8 ],
9 theme: {
10 extend: {
11 colors: {
12 background: '#ffffff',
13 foreground: '#0a0a0a',
14 card: { DEFAULT: '#ffffff', foreground: '#0a0a0a' },
15 primary: { DEFAULT: '#171717', foreground: '#fafafa' },
16 secondary: { DEFAULT: '#f5f5f5', foreground: '#171717' },
17 muted: { DEFAULT: '#f5f5f5', foreground: '#737373' },
18 accent: { DEFAULT: '#f5f5f5', foreground: '#171717' },
19 destructive: '#ef4444',
20 border: '#e5e5e5',
21 input: '#e5e5e5',
22 ring: '#171717',
23 },
24 borderRadius: {
25 sm: '0.25rem',
26 md: '0.375rem',
27 lg: '0.5rem',
28 },
29 },
30 },
31 plugins: [],
32 }
33
33 lines JAVASCRIPT