move to Donetick Org, First commit frontend

This commit is contained in:
Mo Tarbin 2024-06-30 18:55:39 -04:00
commit 2657469964
105 changed files with 21572 additions and 0 deletions

24
tailwind.config.js Normal file
View file

@ -0,0 +1,24 @@
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
ice: {
50: '#CFECF7',
100: '#B9E3F3',
200: '#8DD1EC',
300: '#61C0E5',
400: '#36AEDD',
500: '#2093C0',
600: '#197599',
700: '#135771',
800: '#0C394A',
900: '#061B23',
950: '#020B0F',
},
},
},
},
darkMode: 'class',
plugins: [],
}