improve tailwind colors
This commit is contained in:
parent
636324deea
commit
51a2501d98
2 changed files with 35 additions and 35 deletions
|
@ -24,7 +24,7 @@ onUpdated(() => updateSearch(searchValue, searchType));
|
|||
/>
|
||||
<div class="flex flex-row place-content-center">
|
||||
<button
|
||||
class="py-2 px-4 bg-primary-button-500 hover:bg-primary-button-600 rounded-l-lg text-white"
|
||||
class="py-2 px-4 bg-primary-button-500 hover:bg-primary-button-600 rounded-l-lg text-text-800"
|
||||
@click.prevent="submit('filter')"
|
||||
aria-keyshortcuts="Enter"
|
||||
>Suchen
|
||||
|
|
|
@ -11,44 +11,44 @@ export default {
|
|||
extend: {
|
||||
colors: {
|
||||
'text': { // hand-choosen
|
||||
50: '#FDFDFD',
|
||||
100: '#F6F6F6',
|
||||
200: '#E8E8E7',
|
||||
300: '#D9D9D9',
|
||||
400: '#D0D0CF',
|
||||
500: '#BBBBBB',
|
||||
600: '#A1A1A1',
|
||||
700: '#848484',
|
||||
800: '#686867',
|
||||
900: '#494949',
|
||||
950: '#2C2C2C',
|
||||
50: '#FFF8F6',
|
||||
100: '#FFF2ED',
|
||||
200: '#F7E6E0',
|
||||
300: '#E4D1C8',
|
||||
400: '#CFBAB0',
|
||||
500: '#B8A599',
|
||||
600: '#9D8E83',
|
||||
700: '#7D7168',
|
||||
800: '#5D544D',
|
||||
900: '#403B36',
|
||||
950: '#2C2925',
|
||||
},
|
||||
'background': { // hand-choosen
|
||||
50: '#FDFDFD',
|
||||
100: '#F3F3F6',
|
||||
200: '#DCDCE7',
|
||||
300: '#C0BFD9',
|
||||
400: '#AAA8CF',
|
||||
500: '#8A86BB',
|
||||
600: '#6C68A1',
|
||||
700: '#554F84',
|
||||
800: '#403B67',
|
||||
900: '#2C2849',
|
||||
950: '#1A182C',
|
||||
50: '#FFF8F6',
|
||||
100: '#FFF2ED',
|
||||
200: '#F7E6E0',
|
||||
300: '#E4D1C8',
|
||||
400: '#CFBAB0',
|
||||
500: '#B8A599',
|
||||
600: '#9D8E83',
|
||||
700: '#7D7168',
|
||||
800: '#5D544D',
|
||||
900: '#403B36',
|
||||
950: '#2C2925',
|
||||
},
|
||||
'primary-button': { // hand-choosen
|
||||
DEFAULT: '#1550A3',
|
||||
50: '#F7FBFF',
|
||||
100: '#B2DBFF',
|
||||
200: '#75B3F1',
|
||||
300: '#4185D2',
|
||||
400: '#2562B9',
|
||||
500: '#1550A3',
|
||||
600: '#0C428E',
|
||||
700: '#043078',
|
||||
800: '#012668',
|
||||
900: '#001E58',
|
||||
950: '#000C24',
|
||||
DEFAULT: '#FFD470',
|
||||
50: '#FFF6E1',
|
||||
100: '#FFEFCA',
|
||||
200: '#FFE8B4',
|
||||
300: '#FFE29D',
|
||||
400: '#FFDB87',
|
||||
500: '#FFD470',
|
||||
600: '#FFCD5A',
|
||||
700: '#FFC743',
|
||||
800: '#FFC02D',
|
||||
900: '#FFB916',
|
||||
950: '#FFB300',
|
||||
},
|
||||
'secondary-button': colors.slate,
|
||||
'accent': colors.amber,
|
||||
|
|
Loading…
Reference in a new issue