Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. mdp <- structure(
  2. list(
  3. color = rep(
  4. x = c(
  5. "amber", "blue", "brown", "cyan", "deepOrange", "deepPurple",
  6. "green", "grey", "indigo", "lightBlue", "lightGreen", "lime",
  7. "orange", "pink", "purple", "red", "teal", "yellow"
  8. ),
  9. each = 10
  10. ),
  11. level = rep(
  12. x = c(50, 100, 200, 300, 400, 500, 600, 700, 800, 900),
  13. each = 18
  14. ),
  15. hex = c(
  16. "#fff8e1", "#ffecb3", "#ffe082", "#ffd54f",
  17. "#ffca28", "#ffc107", "#ffb300", "#ffa000", "#ff8f00", "#ff6f00",
  18. "#e3f2fd", "#bbdefb", "#90caf9", "#64b5f6", "#42a5f5", "#2196f3",
  19. "#1e88e5", "#1976d2", "#1565c0", "#0d47a1", "#efebe9", "#d7ccc8",
  20. "#bcaaa4", "#a1887f", "#8d6e63", "#795548", "#6d4c41", "#5d4037",
  21. "#4e342e", "#3e2723", "#e0f7fa", "#b2ebf2", "#80deea", "#4dd0e1",
  22. "#26c6da", "#00bcd4", "#00acc1", "#0097a7", "#00838f", "#006064",
  23. "#fbe9e7", "#ffccbc", "#ffab91", "#ff8a65", "#ff7043", "#ff5722",
  24. "#f4511e", "#e64a19", "#d84315", "#bf360c", "#ede7f6", "#d1c4e9",
  25. "#b39ddb", "#9575cd", "#7e57c2", "#673ab7", "#5e35b1", "#512da8",
  26. "#4527a0", "#311b92", "#e8f5e9", "#c8e6c9", "#a5d6a7", "#81c784",
  27. "#66bb6a", "#4caf50", "#43a047", "#388e3c", "#2e7d32", "#1b5e20",
  28. "#fafafa", "#f5f5f5", "#eeeeee", "#e0e0e0", "#bdbdbd", "#9e9e9e",
  29. "#757575", "#616161", "#424242", "#212121", "#e8eaf6", "#c5cae9",
  30. "#9fa8da", "#7986cb", "#5c6bc0", "#3f51b5", "#3949ab", "#303f9f",
  31. "#283593", "#1a237e", "#e1f5fe", "#b3e5fc", "#81d4fa", "#4fc3f7",
  32. "#29b6f6", "#03a9f4", "#039be5", "#0288d1", "#0277bd", "#01579b",
  33. "#f1f8e9", "#dcedc8", "#c5e1a5", "#aed581", "#9ccc65", "#8bc34a",
  34. "#7cb342", "#689f38", "#558b2f", "#33691e", "#f9fbe7", "#f0f4c3",
  35. "#e6ee9c", "#dce775", "#d4e157", "#cddc39", "#c0ca33", "#afb42b",
  36. "#9e9d24", "#827717", "#fff3e0", "#ffe0b2", "#ffcc80", "#ffb74d",
  37. "#ffa726", "#ff9800", "#fb8c00", "#f57c00", "#ef6c00", "#e65100",
  38. "#fce4ec", "#f8bbd0", "#f48fb1", "#f06292", "#ec407a", "#e91e63",
  39. "#d81b60", "#c2185b", "#ad1457", "#880e4f", "#f3e5f5", "#e1bee7",
  40. "#ce93d8", "#ba68c8", "#ab47bc", "#9c27b0", "#8e24aa", "#7b1fa2",
  41. "#6a1b9a", "#4a148c", "#ffebee", "#ffcdd2", "#ef9a9a", "#e57373",
  42. "#ef5350", "#f44336", "#e53935", "#d32f2f", "#c62828", "#b71c1c",
  43. "#e0f2f1", "#b2dfdb", "#80cbc4", "#4db6ac", "#26a69a", "#009688",
  44. "#00897b", "#00796b", "#00695c", "#004d40", "#fffde7", "#fff9c4",
  45. "#fff59d", "#fff176", "#ffee58", "#ffeb3b", "#fdd835", "#fbc02d",
  46. "#f9a825", "#f57f17"
  47. )
  48. ),
  49. class = c("tbl_df", "tbl", "data.frame"
  50. ),
  51. row.names = c(NA, -180L)
  52. )
  53.  
  54. material.pal <- function(color = NULL, level = 500) {
  55. if (is.null(color) & is.null(level)) {
  56. stop("Either a color name or level must be provided.")
  57. }
  58. if (!is.null(color)) {
  59. color <- snakecase::to_lower_camel_case(color)
  60. valid_cols <- unique(mdp$color)
  61. if (!(color %in% valid_cols)) {
  62. stop("color is not a valid name. See ?material.pal for a list of valid colro names.")
  63. }
  64. }
  65. if (!is.null(level)) {
  66. valid_levels <- unique(mdp$level)
  67. if (!(level %in% valid_levels)) {
  68. stop("level is not a valid numer. See ?material.pal for a list of valid colro names.")
  69. }
  70. }
  71. if (!is.null(color) & !is.null(level)) {
  72. hex <- mdp$hex[which(mdp$color == color, mdp$level == level)]
  73. } else {
  74. if (is.null(color) & !is.null(level)) {
  75. hex <- mdp$hex[which(mdp$level == level)]
  76. } else {
  77. if (!is.null(color) & is.null(level)) {
  78. hex <- mdp$hex[which(mdp$color == color)]
  79. }
  80. }
  81. }
  82. return(hex)
  83. }
  84.  
  85. material.pal()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement