mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-24 01:51:57 +03:00
Add new color palettes
This diff also disables opacity utility generation. This means we get more readable colors in the output CSS.
This commit is contained in:
parent
68fd4d9832
commit
18ab115788
@ -2,6 +2,9 @@ const plugin = require('tailwindcss/plugin');
|
||||
const config = {
|
||||
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||||
darkMode: 'class',
|
||||
corePlugins: {
|
||||
backgroundOpacity: false
|
||||
},
|
||||
theme: {
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'SF Pro', '-apple-system', 'system-ui'],
|
||||
@ -53,6 +56,26 @@ const config = {
|
||||
400: '#9ca3af',
|
||||
500: '#6B7280'
|
||||
},
|
||||
dark: {
|
||||
100: '#4C4C4C',
|
||||
200: '#3C3C3C',
|
||||
300: '#2C2C2C',
|
||||
400: '#27272A',
|
||||
500: '#252525',
|
||||
600: '#212121',
|
||||
700: '#1E1E1E',
|
||||
800: '#1F1F1F'
|
||||
},
|
||||
light: {
|
||||
100: '#B3B3B3',
|
||||
200: '#C3C3C3',
|
||||
300: '#D3D3D3',
|
||||
400: '#D8D8D5',
|
||||
500: '#DADADA',
|
||||
600: '#DEDEDE',
|
||||
700: '#E1E1E1',
|
||||
800: '#F1F1F1'
|
||||
},
|
||||
blue: {
|
||||
200: '#bfdbfe',
|
||||
400: '#60a5fa',
|
||||
|
Loading…
Reference in New Issue
Block a user