mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
9 lines
415 B
Ruby
9 lines
415 B
Ruby
module ExportsHelper
|
|
def colors
|
|
@colors ||= [
|
|
"#49416D", "#FFC857", "#920020", "#00B0B3", "#B2D236", "#004D61", "#FFB3CC", "#E65100", "#7BAFDE", "#332288",
|
|
"#88CCEE", "#D155FF", "#999933", "#117733", "#882255", "#5289C7", "#F6C141", "#4EB265", "#E8601C", "#AE76A3",
|
|
"#90C987", "#BF360C", "#3E2723", "#827717", "#44AA99", "#AA4499", "#00897B", "#FF6F00", "#263238", "#CC6699"
|
|
]
|
|
end
|
|
end
|