FIXED: Normalized colors in icon-buttons, typography color in night-mode
This commit is contained in:
28
app/page.tsx
28
app/page.tsx
@@ -19,13 +19,30 @@ export default function Page() {
|
||||
<FAB icon={'edit'} variant={'secondary'} />
|
||||
<FAB icon={'edit'} ripple={false} variant={'secondary'} />
|
||||
|
||||
<IconButton icon={'settings'} variant={'filled'} />
|
||||
<IconButton icon={'settings'} variant={'default'} />
|
||||
<IconButton icon={'settings'} variant={'tonal'} />
|
||||
<IconButton icon={'settings'} variant={'outlined'} />
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
variant={'filled'}
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
variant={'default'}
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
variant={'tonal'}
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
variant={'outlined'}
|
||||
/>
|
||||
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
toggled={{
|
||||
selected: 'settings',
|
||||
unselected: 'settings',
|
||||
@@ -34,6 +51,7 @@ export default function Page() {
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
toggled={{
|
||||
selected: 'settings',
|
||||
unselected: 'settings',
|
||||
@@ -42,6 +60,7 @@ export default function Page() {
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
toggled={{
|
||||
selected: 'settings',
|
||||
unselected: 'settings',
|
||||
@@ -50,6 +69,7 @@ export default function Page() {
|
||||
/>
|
||||
<IconButton
|
||||
icon={'settings'}
|
||||
ripple={false}
|
||||
toggled={{
|
||||
selected: 'settings',
|
||||
unselected: 'settings',
|
||||
|
||||
Reference in New Issue
Block a user