thelounge/client/js/constants.js

42 lines
847 B
JavaScript
Raw Normal View History

2017-04-18 09:42:26 +02:00
"use strict";
const colorCodeMap = [
["00", "White"],
["01", "Black"],
["02", "Blue"],
["03", "Green"],
["04", "Red"],
["05", "Brown"],
["06", "Magenta"],
["07", "Orange"],
["08", "Yellow"],
["09", "Light Green"],
["10", "Cyan"],
["11", "Light Cyan"],
["12", "Light Blue"],
["13", "Pink"],
["14", "Grey"],
["15", "Light Grey"],
];
const condensedTypes = ["chghost", "join", "part", "quit", "nick", "kick", "mode"];
const condensedTypesQuery = "." + condensedTypes.join(", .");
2017-06-22 22:08:36 +02:00
2017-05-06 20:44:57 +02:00
const timeFormats = {
msgDefault: "HH:mm",
msgWithSeconds: "HH:mm:ss",
2017-05-06 20:44:57 +02:00
};
2019-08-09 22:20:08 +02:00
const sizeUnits = ["B", "KiB", "MiB", "GiB", "TiB"];
2019-11-16 18:24:03 +01:00
export default {
colorCodeMap,
2019-07-02 18:02:02 +02:00
commands: [],
condensedTypes,
condensedTypesQuery,
timeFormats,
2019-08-09 22:20:08 +02:00
sizeUnits,
2019-10-17 18:56:44 +02:00
// Same value as media query in CSS that forces sidebars to become overlays
mobileViewportPixels: 768,
2017-04-18 09:42:26 +02:00
};