diff options
Diffstat (limited to 'thallium-frontend/src/themes.tsx')
| -rw-r--r-- | thallium-frontend/src/themes.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/thallium-frontend/src/themes.tsx b/thallium-frontend/src/themes.tsx new file mode 100644 index 0000000..9bc4f77 --- /dev/null +++ b/thallium-frontend/src/themes.tsx @@ -0,0 +1,20 @@ +const themes = { + light: { + backgroundColor: '#f0f0f0', + textColor: '#000', + borderColor: '#ccc', + linkColor: '#7272ff', + cardBackgroundColor: '#ebebeb', + cardShadow: '#d0d0d0', + }, + dark: { + backgroundColor: '#333', + textColor: '#fff', + borderColor: '#949494', + linkColor: '#8f8fff', + cardBackgroundColor: '#2c2c2c', + cardShadow: '#242323', + }, +}; + +export default themes; |