Source

components/FormInputs/SelectInput/selectInputColorOptions.js

  1. /**
  2. * Background color options for the SelectInput component.
  3. * @module selectInputColorOptions
  4. * @category FormInputs
  5. * @author Dan Levy <danlevy124@gmail.com>
  6. */
  7. /**
  8. * White background color
  9. * @type {string}
  10. */
  11. export const WHITE = "white";
  12. /**
  13. * Primary blue background color
  14. * @type {string}
  15. */
  16. export const PRIMARY_BLUE = "primaryBlue";
  17. /**
  18. * Green background color
  19. * @type {string}
  20. */
  21. export const GREEN = "green";
  22. /**
  23. * Orange background color
  24. * @type {string}
  25. */
  26. export const ORANGE = "orange";
  27. /**
  28. * Red background color
  29. * @type {string}
  30. */
  31. export const RED = "red";