feat: rename Farbhelfer to Pigmento
This commit is contained in:
@@ -3,12 +3,12 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Farbhelfer</title>
|
||||
<title>Pigmento</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Farbhelfer</h1>
|
||||
<h1>Pigmento</h1>
|
||||
<nav>
|
||||
<button class="tab-btn active" data-tab="picker">Picker</button>
|
||||
<button class="tab-btn" data-tab="eingabe">Eingabe</button>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { hslToHex } from './converter.js';
|
||||
|
||||
const STORAGE_KEY = 'farbhelfer';
|
||||
const STORAGE_KEY = 'pigmento';
|
||||
const HISTORY_MAX = 20;
|
||||
|
||||
function load() {
|
||||
@@ -87,7 +87,7 @@ export function exportCollection() {
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = 'farbhelfer-sammlung.json';
|
||||
a.download = 'pigmento-sammlung.json';
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
document.body.removeChild(a);
|
||||
|
||||
Reference in New Issue
Block a user