Home Reference Source

app/styles/styles.js

  1. /**
  2. * This file defines standard formatting for elements
  3. which can be reused across the application's files.
  4. To extend with additional properties within files,
  5. refer to the following example syntax:
  6. Object.assign({}, baseButton, {
  7. flex: 1,
  8. backgroundColor: colors.caramel,
  9. })
  10. */
  11. import { colors } from './colors.js';
  12.  
  13. export const baseButton = {
  14. 'color': colors.primary1,
  15. 'fontSize': 14,
  16. };
  17.  
  18. export const baseComponent = {
  19. 'fontSize': 14,
  20. 'color': colors.secondary1,
  21. 'backgroundColor': colors.primary1,
  22. 'borderColor': colors.secondary2,
  23. 'borderWidth': 4,
  24. };
  25.  
  26. export const baseContainer = {
  27. 'flex': 1,
  28. 'justifyContent': 'center',
  29. 'alignItems': 'center',
  30. };
  31.