File tree Expand file tree Collapse file tree 4 files changed +38
-30
lines changed
Expand file tree Collapse file tree 4 files changed +38
-30
lines changed Original file line number Diff line number Diff line change 2020 "react-dom" : " ^18.3.1"
2121 },
2222 "devDependencies" : {
23+ "@tailwindcss/postcss" : " ^4.1.18" ,
2324 "@types/react" : " ^18.3.1" ,
2425 "@types/react-dom" : " ^18.3.0" ,
2526 "@vitejs/plugin-react" : " ^4.3.4" ,
Original file line number Diff line number Diff line change 11export default {
22 plugins : {
3- tailwindcss : { } ,
3+ '@ tailwindcss/postcss' : { } ,
44 autoprefixer : { } ,
55 } ,
66}
Original file line number Diff line number Diff line change 1- @tailwind base;
2- @tailwind components;
3- @tailwind utilities;
1+ @import "tailwindcss" ;
42
5- : root {
6- --background : # ffffff ;
7- --foreground : # 000000 ;
3+ @layer base {
4+ : root {
5+ --background : # ffffff ;
6+ --foreground : # 000000 ;
87
9- --accents-1 : # fafafa ;
10- --accents-2 : # eaeaea ;
11- --accents-3 : # 999999 ;
12- --accents-4 : # 888888 ;
13- --accents-5 : # 666666 ;
14- --accents-6 : # 444444 ;
15- --accents-7 : # 333333 ;
16- --accents-8 : # 111111 ;
8+ --accents-1 : # fafafa ;
9+ --accents-2 : # eaeaea ;
10+ --accents-3 : # 999999 ;
11+ --accents-4 : # 888888 ;
12+ --accents-5 : # 666666 ;
13+ --accents-6 : # 444444 ;
14+ --accents-7 : # 333333 ;
15+ --accents-8 : # 111111 ;
1716
18- --success-lighter : # d3e5ff ;
19- --success-light : # 3291ff ;
20- --success : # 0070f3 ;
21- --success-dark : # 0761d1 ;
17+ --success-lighter : # d3e5ff ;
18+ --success-light : # 3291ff ;
19+ --success : # 0070f3 ;
20+ --success-dark : # 0761d1 ;
2221
23- --error-lighter : # f7d4d6 ;
24- --error-light : # ff1a1a ;
25- --error : # e00000 ;
26- --error-dark : # c50000 ;
22+ --error-lighter : # f7d4d6 ;
23+ --error-light : # ff1a1a ;
24+ --error : # e00000 ;
25+ --error-dark : # c50000 ;
2726
28- --warning-lighter : # ffefcf ;
29- --warning-light : # f7b955 ;
30- --warning : # f5a623 ;
31- --warning-dark : # ab570a ;
32- }
27+ --warning-lighter : # ffefcf ;
28+ --warning-light : # f7b955 ;
29+ --warning : # f5a623 ;
30+ --warning-dark : # ab570a ;
31+ }
3332
34- body {
35- @apply bg-background text-foreground antialiased font-sans;
33+ body {
34+ background-color : var (--background );
35+ color : var (--foreground );
36+ -webkit-font-smoothing : antialiased;
37+ -moz-osx-font-smoothing : grayscale;
38+ font-family : 'Inter' , sans-serif;
39+ }
3640}
You can’t perform that action at this time.
0 commit comments