mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-01-25 07:19:13 +01:00
[bug] fix link colour and accent rainbow hue not being an integer
This commit is contained in:
parent
f66bc64dac
commit
b7bd20b858
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.42.1",
|
||||
"version": "5.42.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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": {
|
||||
|
@ -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
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "5.42.1";
|
||||
var current = "5.42.2";
|
||||
|
||||
var name = "Macabre Caterpillar";
|
||||
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user