[bug] fix link colour and accent rainbow hue not being an integer

This commit is contained in:
zombieFox 2020-06-16 09:25:46 +01:00
parent f66bc64dac
commit b7bd20b858
5 changed files with 6 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "nightTab",
"version": "5.42.1",
"version": "5.42.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "nightTab",
"version": "5.42.1",
"version": "5.42.2",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"main": "index.js",
"scripts": {

View File

@ -252,7 +252,7 @@ var link = (function() {
l: 50
});
arrayItem.accent.hsl = {
h: degree,
h: Math.round(degree),
s: 100,
l: 50
};
@ -332,7 +332,7 @@ var link = (function() {
l: 50
});
arrayItem.color.hsl = {
h: degree,
h: Math.round(degree),
s: 100,
l: 50
};

View File

@ -1,6 +1,6 @@
var version = (function() {
var current = "5.42.1";
var current = "5.42.2";
var name = "Macabre Caterpillar";

View File

@ -2,7 +2,7 @@
"name": "nightTab",
"short_name": "nightTab",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"version": "5.42.1",
"version": "5.42.2",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"