mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #5667 - Remove base option from theme config
This commit is contained in:
parent
6d688ef675
commit
0979dde96d
438 changed files with 10872 additions and 11957 deletions
92
components/lib/themes/aura/message/index.js
Normal file
92
components/lib/themes/aura/message/index.js
Normal file
|
@ -0,0 +1,92 @@
|
|||
export default {
|
||||
colorScheme: {
|
||||
light: {
|
||||
info: {
|
||||
background: 'color-mix(in srgb, {blue.50}, transparent 5%)',
|
||||
borderColor: '{blue.200}',
|
||||
color: '{blue.600}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)',
|
||||
closeHoverBackground: '{blue.100}'
|
||||
},
|
||||
success: {
|
||||
background: 'color-mix(in srgb, {green.50}, transparent 5%)',
|
||||
borderColor: '{green.200}',
|
||||
color: '{green.600}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)',
|
||||
closeHoverBackground: '{green.100}'
|
||||
},
|
||||
warn: {
|
||||
background: 'color-mix(in srgb,{yellow.50}, transparent 5%)',
|
||||
borderColor: '{yellow.200}',
|
||||
color: '{yellow.600}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)',
|
||||
closeHoverBackground: '{yellow.100}'
|
||||
},
|
||||
error: {
|
||||
background: 'color-mix(in srgb, {red.50}, transparent 5%)',
|
||||
borderColor: '{red.200}',
|
||||
color: '{red.600}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)',
|
||||
closeHoverBackground: '{red.100}'
|
||||
},
|
||||
secondary: {
|
||||
background: '{surface.100}',
|
||||
borderColor: '{surface.200}',
|
||||
color: '{surface.600}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)',
|
||||
closeHoverBackground: '{surface.200}'
|
||||
},
|
||||
contrast: {
|
||||
background: '{surface.900}',
|
||||
borderColor: '{surface.950}',
|
||||
color: '{surface.50}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)',
|
||||
closeHoverBackground: '{surface.800}'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
info: {
|
||||
background: 'color-mix(in srgb, {blue.500}, transparent 84%)',
|
||||
borderColor: 'color-mix(in srgb, {blue.700}, transparent 64%)',
|
||||
color: '{blue.500}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)',
|
||||
closeHoverBackground: 'rgba(255, 255, 255, 0.05)'
|
||||
},
|
||||
success: {
|
||||
background: 'color-mix(in srgb, {green.500}, transparent 84%)',
|
||||
borderColor: 'color-mix(in srgb, {green.700}, transparent 64%)',
|
||||
color: '{green.500}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)',
|
||||
closeHoverBackground: 'rgba(255, 255, 255, 0.05)'
|
||||
},
|
||||
warn: {
|
||||
background: 'color-mix(in srgb, {yellow.500}, transparent 84%)',
|
||||
borderColor: 'color-mix(in srgb, {yellow.700}, transparent 64%)',
|
||||
color: '{yellow.500}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)',
|
||||
closeHoverBackground: 'rgba(255, 255, 255, 0.05)'
|
||||
},
|
||||
error: {
|
||||
background: 'color-mix(in srgb, {red.500}, transparent 84%)',
|
||||
borderColor: 'color-mix(in srgb, {red.700}, transparent 64%)',
|
||||
color: '{red.500}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)',
|
||||
closeHoverBackground: 'rgba(255, 255, 255, 0.05)'
|
||||
},
|
||||
secondary: {
|
||||
background: '{surface.800}',
|
||||
borderColor: '{surface.700}',
|
||||
color: '{surface.300}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)',
|
||||
closeHoverBackground: '{surface.700}'
|
||||
},
|
||||
contrast: {
|
||||
background: '{surface.0}',
|
||||
borderColor: '{surface.100}',
|
||||
color: '{surface.950}',
|
||||
boxShadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)',
|
||||
closeHoverBackground: '{surface.100}'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue