Color Properties - 图1

Color Properties

Color Properties

All Framework7-React components supports same set of color properties that allow to set separate element colors and color themes:

PropTypeDefaultDescription
colorstringSingle element color. One of the default colors.
colorThemestringApplies color theme to the element. It should be some parent element as this will have visual effect on all supported children elements, e.g. view, page, navbar, toolbar, list, etc. One of the default colors.
textColorstringSets element’s text color. One of the default colors.
bgColorstringSets element’s background color. One of the default colors.
borderThemestringSets element’s borders color. One of the default colors.
rippleColorstringSets element ripple wave color (MD-theme only). One of the default colors.
themeDarkbooleanfalseEnables dark layout theme on element. It should be some parent element as this will have visual effect on all supported children elements, e.g. view, page, navbar, toolbar, list, etc.

For example:

  1. <!-- Button color -->
  2. <Button color="red">Red Button</Button>
  3. <!-- Link color -->
  4. <Link color="green">Green Link</Link>
  5. <!-- Page color theme -->
  6. <Page colorTheme="orange">
  7. ...
  8. </Page>
  9. <!-- Panel with dark theme -->
  10. <Panel themeDark>
  11. ...
  12. </Panel>

Supported Colors

ColoriOSMD
red
#ff3b30
#f44336
green
#4cd964
#4caf50
blue
#007aff
#2196f3
pink
#e91e63
#e91e63
yellow
#ffcc00
#ffeb3b
orange
#ff9500
#ff9800
gray
#8e8e93
#9e9e9e
white
#fff
#fff
black
#000
#000