Skip to content
Snippets Groups Projects

style(tailwind): add colors for theme

Merged mateuszmiko requested to merge style/add_tailwind_color_theme into development
All threads resolved!
1 file
+ 20
3
Compare changes
  • Side-by-side
  • Inline
+ 20
3
@@ -4,9 +4,26 @@ const config: Config = {
@@ -4,9 +4,26 @@ const config: Config = {
content: ['./src/**/*.ts', './src/**/*.tsx'],
content: ['./src/**/*.ts', './src/**/*.tsx'],
theme: {
theme: {
extend: {
extend: {
backgroundImage: {
colors: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
primary: {
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
100: '#ebf4ff',
 
500: '#106ad7',
 
600: '#0055bb',
 
700: '#004393',
 
},
 
greyscale: {
 
500: '#eeeeee',
 
600: '#cacaca',
 
700: '#a5a5a5',
 
},
 
font: {
 
400: '#6a6977',
 
500: '#070130',
 
},
 
cinnabar: '#ec4d2c',
 
'med-sea-green': '#3ab65d',
 
cultured: '#f7f7f8',
 
'white-pearl': '#ffffff',
},
},
},
},
},
},
Loading