Skip to content
Snippets Groups Projects
Commit f2886bda authored by Mateusz Mikołajczak's avatar Mateusz Mikołajczak
Browse files

style(tailwind): add colors for theme

parent 52d33c4b
No related branches found
No related tags found
1 merge request!5style(tailwind): add colors for theme
Pipeline #78437 passed
import type { Config } from 'tailwindcss' import type { Config } from 'tailwindcss';
const config: Config = { const config: Config = {
content: [ content: [
...@@ -10,11 +10,31 @@ const config: Config = { ...@@ -10,11 +10,31 @@ const config: Config = {
extend: { extend: {
backgroundImage: { backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', },
colors: {
primary: {
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',
}, },
}, },
}, },
plugins: [], plugins: [],
} };
export default config export default config;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment