@@ -2,27 +2,30 @@ import type { ThemeProps } from './types/theme';
22
33export const lightTheme : ThemeProps = {
44 colors : {
5+ background : '#ffffff' ,
56 primaryColor : '#007bff' ,
6- textColor : '#212529' ,
77 borderColor : '#dee2e6' ,
8- background : '#ffffff' ,
98 } ,
109 table : {
1110 header : {
1211 background : '#e9ecef' ,
1312 textColor : '#495057' ,
13+ } ,
14+ cell : {
15+ textColor : '#212529' ,
1416 borderColor : '#dee2e6' ,
1517 } ,
1618 row : {
1719 mainBackground : '#ffffff' ,
1820 nestedBackground : '#f8f9fa' ,
1921 expandedBackground : '#e9ecef' ,
20- hoverBackground : '#f8f9fa' ,
2122 } ,
22- cell : {
23- textColor : '#212529' ,
24- borderColor : '#dee2e6' ,
25- nestedPadding : '1rem' ,
23+ filter : {
24+ background : 'transparent' ,
25+ textColor : '#495057' ,
26+ borderColor : '#495057' ,
27+ focusBorderColor : '#007bff' ,
28+ placeholderColor : 'rgba(73, 80, 87, 0.7)' ,
2629 } ,
2730 } ,
2831 pagination : {
@@ -47,27 +50,30 @@ export const lightTheme: ThemeProps = {
4750
4851export const darkTheme : ThemeProps = {
4952 colors : {
53+ background : '#212529' ,
5054 primaryColor : '#0d6efd' ,
51- textColor : '#ffffff' ,
5255 borderColor : '#495057' ,
53- background : '#212529' ,
5456 } ,
5557 table : {
5658 header : {
5759 background : '#2b3035' ,
5860 textColor : '#e9ecef' ,
61+ } ,
62+ cell : {
63+ textColor : '#e9ecef' ,
5964 borderColor : '#495057' ,
6065 } ,
6166 row : {
6267 mainBackground : '#343a40' ,
6368 nestedBackground : '#2b3035' ,
6469 expandedBackground : '#212529' ,
65- hoverBackground : '#2b3035' ,
6670 } ,
67- cell : {
71+ filter : {
72+ background : 'transparent' ,
6873 textColor : '#e9ecef' ,
69- borderColor : '#495057' ,
70- nestedPadding : '1rem' ,
74+ borderColor : '#e9ecef' ,
75+ focusBorderColor : '#0d6efd' ,
76+ placeholderColor : 'rgba(233, 236, 239, 0.7)' ,
7177 } ,
7278 } ,
7379 pagination : {
0 commit comments