Remove *more* unused stuff
This commit is contained in:
parent
da992ff1b7
commit
cebb14f59c
52 changed files with 791 additions and 2984 deletions
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class CalculatorsController extends Controller
|
||||
{
|
||||
public function show() : View {
|
||||
return view('calculators');
|
||||
}
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class ComputersController extends Controller
|
||||
{
|
||||
public function show() : View {
|
||||
return view('computers');
|
||||
}
|
||||
}
|
|
@ -23,7 +23,6 @@ public function getCurrentTrack() {
|
|||
'api_key' => Config::get('services.lastfm.key')
|
||||
])->get('https://ws.audioscrobbler.com/2.0/');
|
||||
$data = $response->json();
|
||||
error_log($response->body());
|
||||
$track_data = $data["recenttracks"]["track"][0];
|
||||
// $image = array_column($track_data["image"], null, 'size')['large'] ?? false;
|
||||
$image = $track_data["image"][(array_key_last($track_data["image"]))] ?? false;
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class PrivacyController extends Controller{
|
||||
/**
|
||||
* Shows the page
|
||||
* @return View
|
||||
*/
|
||||
public function show(): View {
|
||||
return view('privacy');
|
||||
}
|
||||
}
|
|
@ -1,68 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Illuminate\Support\Facades\Config;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class DiscordStatus extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns current Discord presence from Lanyard API
|
||||
* @return array|mixed
|
||||
*/
|
||||
public function getDiscordPresence(): mixed {
|
||||
// If it's already cached just return that
|
||||
if (Cache::has('discord_presence')) {
|
||||
return Cache::get('discord_presence');
|
||||
}
|
||||
|
||||
$response = Http::get('https://api.lanyard.rest/v1/users/' . Config::get('services.lanyard.user_id'));
|
||||
$data = $response->json();
|
||||
if (!isset($data["data"])) return null;
|
||||
$presence = $data["data"];
|
||||
Cache::put('discord_presence', $presence, now()->addSeconds(60));
|
||||
return $presence;
|
||||
}
|
||||
|
||||
public function getOnlineStatus(): ?array {
|
||||
$presence = $this->getDiscordPresence();
|
||||
if ($presence == null) return null;
|
||||
return match ($presence["discord_status"]) {
|
||||
"online", "dnd" => [
|
||||
"text" => "online",
|
||||
"color" => "#02c83a"
|
||||
],
|
||||
"idle" => [
|
||||
"text" => "away",
|
||||
"color" => "#d77c20"
|
||||
],
|
||||
default => [
|
||||
"text" => "offline",
|
||||
"color" => "#ca3329"
|
||||
],
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.discord-status', [
|
||||
'status' => $this->getOnlineStatus(),
|
||||
]);
|
||||
}
|
||||
}
|
|
@ -6,22 +6,19 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class LastFMCurrent extends Component
|
||||
{
|
||||
class LastFMCurrent extends Component {
|
||||
public $track;
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct($track)
|
||||
{
|
||||
public function __construct($track) {
|
||||
$this->track = $track;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.lasfm-current');
|
||||
public function render(): View|Closure|string {
|
||||
return view('components.lastfm-current');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,22 +6,19 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class LastFMTop extends Component
|
||||
{
|
||||
class LastFMTop extends Component {
|
||||
public $tracks;
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct($tracks)
|
||||
{
|
||||
public function __construct($tracks) {
|
||||
$this->tracks = $tracks;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
public function render(): View|Closure|string {
|
||||
return view('components.lastfm-top');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,15 +6,13 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class LastFMTrack extends Component
|
||||
{
|
||||
class LastFMTrack extends Component {
|
||||
public $track;
|
||||
public $count;
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct($track, $count)
|
||||
{
|
||||
public function __construct($track, $count) {
|
||||
$this->track = $track;
|
||||
$this->count = $count;
|
||||
}
|
||||
|
@ -22,8 +20,7 @@ public function __construct($track, $count)
|
|||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
public function render(): View|Closure|string {
|
||||
return view('components.lastfm-track');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,22 +6,19 @@
|
|||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Navbar extends Component
|
||||
{
|
||||
class Navbar extends Component {
|
||||
public $title;
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct($title)
|
||||
{
|
||||
public function __construct($title) {
|
||||
$this->title = $title;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
public function render(): View|Closure|string {
|
||||
return view('components.navigation');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class NeverSaid extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
function returnQuote(): array {
|
||||
$quotes = config('quotes.neversaid');
|
||||
$index = rand(0, count($quotes) - 1);
|
||||
return $quotes[$index];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.never-said', [
|
||||
"quote" => $this->returnQuote()
|
||||
]);
|
||||
}
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class TohQuote extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
function returnQuote(): array {
|
||||
$quotes = config('quotes.toh');
|
||||
$index = rand(0, count($quotes) - 1);
|
||||
return $quotes[$index];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.toh-quote',[
|
||||
'quote' => $this->returnQuote()
|
||||
]);
|
||||
}
|
||||
}
|
|
@ -9,8 +9,7 @@
|
|||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Wah extends Component
|
||||
{
|
||||
class Wah extends Component {
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
|
|
|
@ -1,50 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Exception;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
use Illuminate\Support\Facades\Config;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Weather extends Component
|
||||
{
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
public function getWeatherData(): mixed {
|
||||
// If it's already cached just return that
|
||||
if (Cache::has('weather_data')) {
|
||||
return Cache::get('weather_data');
|
||||
}
|
||||
|
||||
try {
|
||||
$response = Http::get('http://' . Config::get('services.weatherlink') . '/v1/current_conditions');
|
||||
$data = $response->json();
|
||||
$conditions = $data["data"]["conditions"];
|
||||
Cache::put('weather_data', $conditions, now()->addSeconds(60));
|
||||
return $conditions;
|
||||
} catch (Exception $ex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*/
|
||||
public function render(): View|Closure|string
|
||||
{
|
||||
return view('components.weather', [
|
||||
'conditions' => $this->getWeatherData(),
|
||||
]);
|
||||
}
|
||||
}
|
BIN
auth0
BIN
auth0
Binary file not shown.
|
@ -6,13 +6,11 @@
|
|||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.1",
|
||||
"gecche/laravel-multidomain": "^10.2",
|
||||
"guzzlehttp/guzzle": "^7.2",
|
||||
"intervention/image": "^3.9",
|
||||
"laravel/framework": "^10.10",
|
||||
"laravel/tinker": "^2.8",
|
||||
"scrivo/highlight.php": "v9.18.1.10",
|
||||
"sentry/sentry-laravel": "^4.1",
|
||||
"spatie/laravel-honeypot": "^4.3",
|
||||
"spatie/laravel-html": "^3.4",
|
||||
"ua-parser/uap-php": "^3.9.14",
|
||||
|
|
1238
composer.lock
generated
1238
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -9,7 +9,6 @@
|
|||
'env' => env('APP_ENV', 'production'),
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
'api_root' => env('API_ROOT', 'http://localhost:3000'),
|
||||
|
||||
'asset_url' => env('ASSET_URL'),
|
||||
'timezone' => 'UTC',
|
||||
|
|
|
@ -1,117 +0,0 @@
|
|||
<?php
|
||||
return [
|
||||
// Friends' Websites
|
||||
[
|
||||
'name' => "Friends' Websites",
|
||||
'bookmarks' => [
|
||||
[
|
||||
'name' => "nick99nack",
|
||||
'url' => "http://www.nick99nack.com/",
|
||||
'description' => "Currently in the process of taking over the internet. I Totally didn't steal any of his stuff."
|
||||
],
|
||||
[
|
||||
'name' => "campos",
|
||||
'url' => "https://campos02.me/",
|
||||
'description' => "Cool brazilian dude, does programming and stuff"
|
||||
],
|
||||
[
|
||||
'name' => "Sashi",
|
||||
'url' => "https://joshuaalto.com/",
|
||||
'description' => "Site redesign #8! I'll find a website style I enjoy eventually, I swear!"
|
||||
],
|
||||
[
|
||||
'name' => "noone",
|
||||
'url' => "http://strangenessnetworks.com/",
|
||||
'description' => "Strangeness Networks, noone's website."
|
||||
],
|
||||
[
|
||||
'name' => "raf",
|
||||
'url' => "https://notashelf.dev/",
|
||||
'description' => "is a shelf"
|
||||
],
|
||||
[
|
||||
'name' => "CamK06",
|
||||
'url' => "https://starman0620.neocities.org/",
|
||||
'description' => "Now with more outdated HTML!"
|
||||
],
|
||||
[
|
||||
'name' => "HIDEN",
|
||||
'url' => "https://hiden.pw/",
|
||||
'description' => "Moar buttons!"
|
||||
],
|
||||
[
|
||||
'name' => "coco",
|
||||
'url' => "http://cocomark.neocities.org/",
|
||||
'description' => "needs to go to the brain store"
|
||||
],
|
||||
[
|
||||
'name' => "Toxidation",
|
||||
'url' => "http://toxi.pw/",
|
||||
'description' => "h (idk if this is his actual domain he has like 5)"
|
||||
],
|
||||
[
|
||||
'name' => "xproot",
|
||||
'url' => "http://xproot.pw/",
|
||||
'description' => "a random internet person on this very random planet"
|
||||
]
|
||||
]
|
||||
],
|
||||
// Cool Projects
|
||||
[
|
||||
'name' => "Cool Projects",
|
||||
'bookmarks' => [
|
||||
[
|
||||
'name' => "ToS;DR",
|
||||
'url' => "https://tosdr.org/",
|
||||
'description' => "\"I have read and agree to the Terms\" is the biggest lie on the web. They aim to fix that."
|
||||
],
|
||||
[
|
||||
'name' => "NINA",
|
||||
'url' => "https://nina.chat/",
|
||||
'description' => "Yahoo! Messenger (and soon AOL) revival"
|
||||
],
|
||||
[
|
||||
'name' => "Escargot",
|
||||
'url' => "https://escargot.chat/",
|
||||
'description' => "MSN/WLM revival"
|
||||
],
|
||||
]
|
||||
],
|
||||
// Other Cool Stuff
|
||||
[
|
||||
'name' => "Other Cool Stuff",
|
||||
'bookmarks' => [
|
||||
[
|
||||
'name' => "WinWorld",
|
||||
'url' => "http://www.winworldpc.com/",
|
||||
'description' => "WinWorld is an online museum dedicated to the preservation and sharing of vintage, abandoned, and pre-release software."
|
||||
],
|
||||
[
|
||||
'name' => "ToastyTech",
|
||||
'url' => "http://toastytech.com/",
|
||||
'description' => "Nathan's Toasty Technology Page"
|
||||
],
|
||||
[
|
||||
'name' => "Optimized for no one",
|
||||
'url' => "http://www.hoary.org/browse/",
|
||||
'description' => "Optimized for no one, but pretty much OK with . . ."
|
||||
],
|
||||
[
|
||||
'name' => "Cameron's World",
|
||||
'url' => "http://www.cameronsworld.net/",
|
||||
'description' => "A love letter to the Internet of old."
|
||||
]
|
||||
]
|
||||
],
|
||||
// Miscellaneous Resources
|
||||
[
|
||||
'name' => "Miscellaneous Resources",
|
||||
'bookmarks' => [
|
||||
[
|
||||
'name' => "Home Manager (Appendix A)",
|
||||
'url' => "https://rycee.gitlab.io/home-manager/options.html",
|
||||
'description' => "Useful list of configuration options for Home Manager."
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
|
@ -1,27 +0,0 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'env_stub' => '.env',
|
||||
'storage_dirs' => [
|
||||
'app' => [
|
||||
'public' => [
|
||||
],
|
||||
],
|
||||
'framework' => [
|
||||
'cache' => [
|
||||
],
|
||||
'testing' => [
|
||||
],
|
||||
'sessions' => [
|
||||
],
|
||||
'views' => [
|
||||
],
|
||||
],
|
||||
'logs' => [
|
||||
],
|
||||
],
|
||||
'domains' => [
|
||||
'diskfloppy.me' => 'diskfloppy.me',
|
||||
'dwiskfwoppy.me' => 'diskfloppy.me',
|
||||
],
|
||||
];
|
|
@ -1,71 +0,0 @@
|
|||
<?php
|
||||
return [
|
||||
[
|
||||
'name' => "Websites",
|
||||
'projects' => [
|
||||
[
|
||||
'name' => "diskfloppy.me",
|
||||
'description' => "The website you're looking at right now!",
|
||||
'url' => "https://github.com/floppydisk05/diskfloppy.me",
|
||||
'languages' => ["PHP", "CSS"]
|
||||
],
|
||||
[
|
||||
'name' => "NetDrivers",
|
||||
'description' => "Driver downloads website.",
|
||||
'url' => "https://github.com/floppydisk05/NetDrivers",
|
||||
'languages' => ["Ruby", "CSS"]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
'name' => "APIs",
|
||||
'projects' => [
|
||||
[
|
||||
'name' => "trivia-api",
|
||||
'description' => "API to serve random trivia questions.",
|
||||
'url' => "https://github.com/floppydisk05/trivia-api",
|
||||
'languages' => ["JavaScript"]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
'name' => "Discord Bots",
|
||||
'projects' => [
|
||||
[
|
||||
'name' => "PlexBot",
|
||||
'description' => "A basic bot to play music from the configured Plex server in a Discord voice channel.",
|
||||
'url' => "https://github.com/floppydisk05/PlexBot",
|
||||
'languages' => ["Python"]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
'name' => "Abandoned Projects",
|
||||
'projects' => [
|
||||
[
|
||||
'name' => "website-cf",
|
||||
'description' => "Rewrite of my personal website in Adobe ColdFusion.",
|
||||
'url' => "https://github.com/floppydisk05/website-cf",
|
||||
'languages' => ["Adobe ColdFusion"]
|
||||
],
|
||||
[
|
||||
'name' => "WinBotJDA",
|
||||
'description' => "Rewrite of CamK06's WinBot using Java and DiscordJDA.",
|
||||
'url' => "https://github.com/floppydisk05/WinBotJDA",
|
||||
'languages' => ["Java"]
|
||||
],
|
||||
[
|
||||
'name' => "delayed-eject",
|
||||
'description' => "Scripts which eject the cd drive a lot to annoy nick.",
|
||||
'url' => "https://github.com/floppydisk05/delayed-eject",
|
||||
'languages' => ["Shell", "C"]
|
||||
],
|
||||
[
|
||||
'name' => "php-sound",
|
||||
'description' => "Plays a specified sound file or files on the web server when a php page is loaded.",
|
||||
'url' => "https://github.com/floppydisk05/php-sound",
|
||||
'languages' => ["PHP", "Shell"]
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
|
@ -1,957 +0,0 @@
|
|||
<?php
|
||||
return [
|
||||
"toh" => [
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "EDA",
|
||||
"line" => "Ahh sure. Spare us."
|
||||
],
|
||||
[
|
||||
"character" => "LILITH",
|
||||
"line" => "Woe to us whose fates are sealed."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "EDA",
|
||||
"line" => "Hey freeloaders! Guess what today is!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "EDA",
|
||||
"line" => "Quitting! It's like trying, but easier!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E13"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Can it, Fangs! You don't know diddly-dang about squiddly-squat!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E13"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Holy bones, you poofed it! Call the cops, this guy's crazy!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "EDA",
|
||||
"line" => "There is one way, but it's terribly dangerous and partially illegal."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E15"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "GUS CLONE",
|
||||
"line" => "I'd rather die than expose my secrets!"
|
||||
],
|
||||
[
|
||||
"character" => "GUS",
|
||||
"line" => "Then die, you shall!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E15"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "LUZ",
|
||||
"line" => "Vee, you're giving up too quick!"
|
||||
],
|
||||
[
|
||||
"character" => "VEE",
|
||||
"line" => "I'm being realistic."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E10"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "LUZ",
|
||||
"line" => "I have questions about that name..."
|
||||
],
|
||||
[
|
||||
"character" => "LILITH",
|
||||
"line" => "And I have questions about my life!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "EMIRA",
|
||||
"line" => "We can shout as loud as we want, but money always shouts louder."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E20"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "VEE",
|
||||
"line" => "Uhh, no, I'm new in town, I just have one of those faces! But, ju-just one, the normal amount of face."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S3E01"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "RAINE",
|
||||
"line" => "You Know I Hate These Things. Talking To People. Waving To People. People."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Who dares intrude upon I, the King of Demons?!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Soon, Mr. Ducky, we shall drink the fear of those who mocked us."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Try to catch me when I’m covered in grease! I'm a squirmy little fella."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "My crown! Yes, yes! I can feel my powers returning! You, there. Nightmare critter. I shall call you Francois, and you shall be a minion in my army of darkness. Ha‐ha!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Weh?"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "That was actually one of her better breakups!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I AM NOT YOUR CUTIE-PIE!!!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Ha! Good luck. The Boiling Isles is nothing but a cesspool of despair."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "You should run a small business of more scones into my mouth."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Finally, all that mean-spirited laughter made me sleepy."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Less talky, more nappy."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Can't mistake her smell. Like lemons and young, naïve confidence."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I have no son! Eat salt!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E3"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Even demons have inner demons."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E4"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Look, now we're boo-boo buddies!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E4"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Bap!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E4"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Remember when her head got cut off last week? That woman can survive anything. She's probably just tired from staying up all night chasing shrews and voles."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E4"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "That voice. That horrific voice!!!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E4"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Show me the picture! Hah! I can draw better than that. You know, they once called me the King of Artists."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E5"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Are you bestowing gifts upon me? Yes! I accept your offering! The King of Demons is back!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E5"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Cupcakes in my tummy-tum makes the King say yummy-yum!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E5"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Mmm? Oh, yeah. No."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E5"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I'm stealing everything that's not nailed down!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E6"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "King? Who's King? I go by Little Bone Boy now."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E6"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Rivals are meant to be annihilated not befriended. Now keep reading. I've been sucked into your awful fandom."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E7"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "What does Luz know about problems anyway? All she has is dumb teen drama! She doesn't understand how hard some of us have it."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Well, I don't know if you realized, but I'm not a baby!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "My life is a living nightmare!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Fight to the death!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I've got some... very confusing emotions right now."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "All right, you acne‐encrusted hormone buckets. Let's go let out some teen angst!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Ooh! Fight, fight, fight!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E9"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Yes! Yes! This is a throne worthy of a tyrant. Bow to me you snotty underlings. Bow!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E10"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "*Rage squeals*"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E10"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Hey you scum! Which one of you wants to read my literary masterpiece? Anyone brave enough?"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I've always wanted a people chair! I'm in! This will be my first step in my reclamation of power!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I'm sorry, my lawyer advised me not to look at unsolicited work."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "What's a book? Good night!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Hey! Less ready, more scratchy!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Military discipline, cooking! Ha, I truly am a demon for all seasons! Just a dash of Eda's secret sauce and I'm the creator of life!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "This day shall live in infamy."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Obedience? Well, what is a teacher if not an authority figure? A king of children, if you will. Yes! I am your teacher! You may call me Mr. King!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E13"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Assume a coefficient of ten, carry the two, solve for Y, and that is the way to steal a pie from a windowsill! Also you can eat trash."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E13"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Alright. Read chapters three to five on the right way to scratch yourself in public. Spoiler alert: There's no wrong way! Ah, days like these make being a teacher all worth it."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E13"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Oh dear, I've gotten a tube stuck on my nose! Will I ever eat again? Looks like I'm toast!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "The King of Demons misses nobody! I wouldn't care if she came through this door right now!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Beat up the man and steal his things for me!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I'm gonna bake that kid into a pie!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E15"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Senseless violence. Yes, attack! DEATH IS YOUR GOD!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I FORGE MY OWN PATH!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Why am I doing this? I don't even wear clothes!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Ha! What possible regrets could come from the internet? Oh, did you know the earth is actually flat!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "We're going to turn this blood-bath into a fun-bath!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Girl, you can pull off anything! Up top! We're style geniuses!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Now I am king and queen! Best of both things!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Yes! Now I’ll strike fear into my enemies with this armor of intimidation."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E17"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "You know what, when she first got here, I thought we were gonna eat her. But now I only think of that, like, sometimes."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E18"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "The cake is me!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E18"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Me and Eda don't always see eye to eye, but I do consider her family. I want her back as much as you do."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E19"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "We'll have to do something so diabolical, so criminally insane, that they'll have to send us to the Conformatorium."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S1E19"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I'm never letting you go! You're never returning to the human realm!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "King want a cracker!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E1"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Weh? Yeah yeah, I'll deal with it. No one ever said power came with responsibility..."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl
|
||||
|
||||
House, S2E2"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "The King of Demons yields to no one!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E3"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Ah, the chamber where I would devour the hearts of my foes. The taste was cold and bitter, but I bet yours would be sweet, Luz."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E3"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Is that a six-footed pig or a floating appendage? Why, no! It's Gus the Illusion Master. Please leave a message."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E5"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "And weh, and weh, and weh, and weh, and weh, and weh, and weh, and weh!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E7"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Haha! Saint Epiderm? More like Stank Epiderm!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E7"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "DID YOU OWL PELLET ME?!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E8"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "You look like one of my hairballs. Let's just do the trench coat thing!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E9"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Guess minecart chases are a lot more dangerous than video games make'em seem."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E9"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "I can't wait to eat HUMAN snacks!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E10"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "It was the... yeast I could do."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "With my love of mayhem and Hooty’s desperate need for attention, this’ll be a cake walk!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E11"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Hey, Eda, look! \"Dear sister, join the Emperor's Coven and together, we can become gods!\""
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E12"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Ooh! That'll work great when birds try to fly away with me."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "What you need is a healthy distractions from your problems. Like breakfast!"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E14"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Is this thing on? Demon King to Luzura, you copy?"
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "Uh, oh. Uh... Hable más lento, por favor."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S2E16"
|
||||
],
|
||||
[
|
||||
"lines" => [
|
||||
[
|
||||
"character" => "KING",
|
||||
"line" => "The Collector is just a little kid. A scary, powerful one, but… also… sad, and alone. I don’t know, this whole time, I was scared of making him mad, but… I think I can relate to him."
|
||||
]
|
||||
],
|
||||
"attribution" => "The Owl House, S3E1"
|
||||
]
|
||||
],
|
||||
"neversaid" => [
|
||||
[
|
||||
"name" => "ASM",
|
||||
"quote" => "The Director liked all the props we got today."
|
||||
],
|
||||
[
|
||||
"name" => "PM",
|
||||
"quote" => "Ah ha, a revolve. Terrific."
|
||||
],
|
||||
[
|
||||
"name" => "Chippie",
|
||||
"quote" => "I don't know, let's look at the ground plan."
|
||||
],
|
||||
[
|
||||
"name" => "Set Designer",
|
||||
"quote" => "Well, let's just have whatever is cheaper."
|
||||
],
|
||||
[
|
||||
"name" => "Sound",
|
||||
"quote" => "Better turn that down a bit. We don't want to deafen them."
|
||||
],
|
||||
[
|
||||
"name" => "Director",
|
||||
"quote" => "Sorry, my mistake."
|
||||
],
|
||||
[
|
||||
"name" => "Electrics",
|
||||
"quote" => "This equipment is more complicated than we need."
|
||||
],
|
||||
[
|
||||
"name" => "Performer",
|
||||
"quote" => "I really think my big scene should be cut."
|
||||
],
|
||||
[
|
||||
"name" => "SM",
|
||||
"quote" => "Can we do that scene change again please?"
|
||||
],
|
||||
[
|
||||
"name" => "LX designer",
|
||||
"quote" => "Bit more light from those big chaps at the side. Yes that's right, the ones on stalks whatever they are called."
|
||||
],
|
||||
[
|
||||
"name" => "Electrics",
|
||||
"quote" => "All the equipment works perfectly."
|
||||
],
|
||||
[
|
||||
"name" => "Musicians",
|
||||
"quote" => "So what if that's the end of a call. Let's just finish this bit off."
|
||||
],
|
||||
[
|
||||
"name" => "Wardrobe",
|
||||
"quote" => "Now, when exactly is the first dress rehearsal?"
|
||||
],
|
||||
[
|
||||
"name" => "Workshop",
|
||||
"quote" => "I don't want anyone to know, but if you insist then yes, I admit it, I have just done an all-nighter."
|
||||
],
|
||||
[
|
||||
"name" => "Performer",
|
||||
"quote" => "This costume is so comfortable."
|
||||
],
|
||||
[
|
||||
"name" => "Admin",
|
||||
"quote" => "The level of overtime payments here are simply unacceptable. Our backstage staff deserve better."
|
||||
],
|
||||
[
|
||||
"name" => "Box Office",
|
||||
"quote" => "Comps? No problem."
|
||||
],
|
||||
[
|
||||
"name" => "Set Designer",
|
||||
"quote" => "You're right, it looks dreadful."
|
||||
],
|
||||
[
|
||||
"name" => "Flyman",
|
||||
"quote" => "No, my lips are sealed. What I may or may not have seen remains a secret."
|
||||
],
|
||||
[
|
||||
"name" => "Electrics",
|
||||
"quote" => "That had nothing to do with the computer, it was my fault."
|
||||
],
|
||||
[
|
||||
"name" => "Crew",
|
||||
"quote" => "No, no, I'm sure that's our job."
|
||||
],
|
||||
[
|
||||
"name" => "SMgt",
|
||||
"quote" => "Thanks, but I don't drink."
|
||||
],
|
||||
[
|
||||
"name" => "Performer",
|
||||
"quote" => "Let me stand down here with my back to the audience."
|
||||
],
|
||||
[
|
||||
"name" => "Chippie",
|
||||
"quote" => "I can't really manage those big fast power tools myself."
|
||||
],
|
||||
[
|
||||
"name" => "Chippie",
|
||||
"quote" => "I prefer to use these little hand drills."
|
||||
],
|
||||
[
|
||||
"name" => "All",
|
||||
"quote" => "Let's go and ask the Production Manager. He'll know."
|
||||
]
|
||||
]
|
||||
];
|
|
@ -1,108 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Sentry Laravel SDK configuration file.
|
||||
*
|
||||
* @see https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/
|
||||
*/
|
||||
return [
|
||||
|
||||
// @see https://docs.sentry.io/product/sentry-basics/dsn-explainer/
|
||||
'dsn' => env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')),
|
||||
|
||||
// The release version of your application
|
||||
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
|
||||
'release' => env('SENTRY_RELEASE'),
|
||||
|
||||
// When left empty or `null` the Laravel environment will be used (usually discovered from `APP_ENV` in your `.env`)
|
||||
'environment' => env('SENTRY_ENVIRONMENT'),
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#sample-rate
|
||||
'sample_rate' => env('SENTRY_SAMPLE_RATE') === null ? 1.0 : (float)env('SENTRY_SAMPLE_RATE'),
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#traces-sample-rate
|
||||
'traces_sample_rate' => env('SENTRY_TRACES_SAMPLE_RATE') === null ? null : (float)env('SENTRY_TRACES_SAMPLE_RATE'),
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#profiles-sample-rate
|
||||
'profiles_sample_rate' => env('SENTRY_PROFILES_SAMPLE_RATE') === null ? null : (float)env('SENTRY_PROFILES_SAMPLE_RATE'),
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#send-default-pii
|
||||
'send_default_pii' => env('SENTRY_SEND_DEFAULT_PII', false),
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#ignore-exceptions
|
||||
// 'ignore_exceptions' => [],
|
||||
|
||||
// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#ignore-transactions
|
||||
// 'ignore_transactions' => [],
|
||||
|
||||
// Breadcrumb specific configuration
|
||||
'breadcrumbs' => [
|
||||
// Capture Laravel logs as breadcrumbs
|
||||
'logs' => env('SENTRY_BREADCRUMBS_LOGS_ENABLED', true),
|
||||
|
||||
// Capture Laravel cache events (hits, writes etc.) as breadcrumbs
|
||||
'cache' => env('SENTRY_BREADCRUMBS_CACHE_ENABLED', true),
|
||||
|
||||
// Capture Livewire components like routes as breadcrumbs
|
||||
'livewire' => env('SENTRY_BREADCRUMBS_LIVEWIRE_ENABLED', true),
|
||||
|
||||
// Capture SQL queries as breadcrumbs
|
||||
'sql_queries' => env('SENTRY_BREADCRUMBS_SQL_QUERIES_ENABLED', true),
|
||||
|
||||
// Capture SQL query bindings (parameters) in SQL query breadcrumbs
|
||||
'sql_bindings' => env('SENTRY_BREADCRUMBS_SQL_BINDINGS_ENABLED', false),
|
||||
|
||||
// Capture queue job information as breadcrumbs
|
||||
'queue_info' => env('SENTRY_BREADCRUMBS_QUEUE_INFO_ENABLED', true),
|
||||
|
||||
// Capture command information as breadcrumbs
|
||||
'command_info' => env('SENTRY_BREADCRUMBS_COMMAND_JOBS_ENABLED', true),
|
||||
|
||||
// Capture HTTP client request information as breadcrumbs
|
||||
'http_client_requests' => env('SENTRY_BREADCRUMBS_HTTP_CLIENT_REQUESTS_ENABLED', true),
|
||||
],
|
||||
|
||||
// Performance monitoring specific configuration
|
||||
'tracing' => [
|
||||
// Trace queue jobs as their own transactions (this enables tracing for queue jobs)
|
||||
'queue_job_transactions' => env('SENTRY_TRACE_QUEUE_ENABLED', false),
|
||||
|
||||
// Capture queue jobs as spans when executed on the sync driver
|
||||
'queue_jobs' => env('SENTRY_TRACE_QUEUE_JOBS_ENABLED', true),
|
||||
|
||||
// Capture SQL queries as spans
|
||||
'sql_queries' => env('SENTRY_TRACE_SQL_QUERIES_ENABLED', true),
|
||||
|
||||
// Capture SQL query bindings (parameters) in SQL query spans
|
||||
'sql_bindings' => env('SENTRY_TRACE_SQL_BINDINGS_ENABLED', false),
|
||||
|
||||
// Capture where the SQL query originated from on the SQL query spans
|
||||
'sql_origin' => env('SENTRY_TRACE_SQL_ORIGIN_ENABLED', true),
|
||||
|
||||
// Capture views rendered as spans
|
||||
'views' => env('SENTRY_TRACE_VIEWS_ENABLED', true),
|
||||
|
||||
// Capture Livewire components as spans
|
||||
'livewire' => env('SENTRY_TRACE_LIVEWIRE_ENABLED', true),
|
||||
|
||||
// Capture HTTP client requests as spans
|
||||
'http_client_requests' => env('SENTRY_TRACE_HTTP_CLIENT_REQUESTS_ENABLED', true),
|
||||
|
||||
// Capture Redis operations as spans (this enables Redis events in Laravel)
|
||||
'redis_commands' => env('SENTRY_TRACE_REDIS_COMMANDS', false),
|
||||
|
||||
// Capture where the Redis command originated from on the Redis command spans
|
||||
'redis_origin' => env('SENTRY_TRACE_REDIS_ORIGIN_ENABLED', true),
|
||||
|
||||
// Enable tracing for requests without a matching route (404's)
|
||||
'missing_routes' => env('SENTRY_TRACE_MISSING_ROUTES_ENABLED', false),
|
||||
|
||||
// Configures if the performance trace should continue after the response has been sent to the user until the application terminates
|
||||
// This is required to capture any spans that are created after the response has been sent like queue jobs dispatched using `dispatch(...)->afterResponse()` for example
|
||||
'continue_after_response' => env('SENTRY_TRACE_CONTINUE_AFTER_RESPONSE', true),
|
||||
|
||||
// Enable the tracing integrations supplied by Sentry (recommended)
|
||||
'default_integrations' => env('SENTRY_TRACE_DEFAULT_INTEGRATIONS_ENABLED', true),
|
||||
],
|
||||
|
||||
];
|
|
@ -17,9 +17,5 @@
|
|||
'lastfm' => [
|
||||
'key' => env('LASTFM_KEY'),
|
||||
'user' => env('LASTFM_USER'),
|
||||
],
|
||||
'lanyard' => [
|
||||
'user_id' => env('DISCORD_USER_ID'),
|
||||
],
|
||||
'weatherlink' => env('WEATHERLINK_IP')
|
||||
]
|
||||
];
|
||||
|
|
261
package-lock.json
generated
261
package-lock.json
generated
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "diskfloppy.me",
|
||||
"name": "wah.moe",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
@ -21,6 +21,7 @@
|
|||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
|
@ -37,6 +38,7 @@
|
|||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
|
@ -53,6 +55,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"android"
|
||||
|
@ -69,6 +72,7 @@
|
|||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
|
@ -85,6 +89,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
|
@ -101,6 +106,7 @@
|
|||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
|
@ -117,6 +123,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"freebsd"
|
||||
|
@ -133,6 +140,7 @@
|
|||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -149,6 +157,7 @@
|
|||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -165,6 +174,7 @@
|
|||
"ia32"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -181,6 +191,7 @@
|
|||
"loong64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -197,6 +208,7 @@
|
|||
"mips64el"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -213,6 +225,7 @@
|
|||
"ppc64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -229,6 +242,7 @@
|
|||
"riscv64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -245,6 +259,7 @@
|
|||
"s390x"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -261,6 +276,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
|
@ -277,6 +293,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"netbsd"
|
||||
|
@ -293,6 +310,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"openbsd"
|
||||
|
@ -309,6 +327,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"sunos"
|
||||
|
@ -325,6 +344,7 @@
|
|||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
|
@ -341,6 +361,7 @@
|
|||
"ia32"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
|
@ -357,6 +378,7 @@
|
|||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
|
@ -366,87 +388,126 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@sentry-internal/feedback": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-7.91.0.tgz",
|
||||
"integrity": "sha512-SJKTSaz68F5YIwF79EttBm915M2LnacgZMYRnRumyTmMKnebGhYQLwWbZdpaDvOa1U18dgRajDX8Qed/8A3tXw==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-7.120.3.tgz",
|
||||
"integrity": "sha512-ewJJIQ0mbsOX6jfiVFvqMjokxNtgP3dNwUv+4nenN+iJJPQsM6a0ocro3iscxwVdbkjw5hY3BUV2ICI5Q0UWoA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/core": "7.91.0",
|
||||
"@sentry/types": "7.91.0",
|
||||
"@sentry/utils": "7.91.0"
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry-internal/replay-canvas": {
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-7.120.3.tgz",
|
||||
"integrity": "sha512-s5xy+bVL1eDZchM6gmaOiXvTqpAsUfO7122DxVdEDMtwVq3e22bS2aiGa8CUgOiJkulZ+09q73nufM77kOmT/A==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/replay": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry-internal/tracing": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.91.0.tgz",
|
||||
"integrity": "sha512-JH5y6gs6BS0its7WF2DhySu7nkhPDfZcdpAXldxzIlJpqFkuwQKLU5nkYJpiIyZz1NHYYtW5aum2bV2oCOdDRA==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.120.3.tgz",
|
||||
"integrity": "sha512-Ausx+Jw1pAMbIBHStoQ6ZqDZR60PsCByvHdw/jdH9AqPrNE9xlBSf9EwcycvmrzwyKspSLaB52grlje2cRIUMg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/core": "7.91.0",
|
||||
"@sentry/types": "7.91.0",
|
||||
"@sentry/utils": "7.91.0"
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/browser": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-7.91.0.tgz",
|
||||
"integrity": "sha512-lJv3x/xekzC/biiyAsVCioq2XnKNOZhI6jY3ZzLJZClYV8eKRi7D3KCsHRvMiCdGak1d/6sVp8F4NYY+YiWy1Q==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-7.120.3.tgz",
|
||||
"integrity": "sha512-i9vGcK9N8zZ/JQo1TCEfHHYZ2miidOvgOABRUc9zQKhYdcYQB2/LU1kqlj77Pxdxf4wOa9137d6rPrSn9iiBxg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry-internal/feedback": "7.91.0",
|
||||
"@sentry-internal/tracing": "7.91.0",
|
||||
"@sentry/core": "7.91.0",
|
||||
"@sentry/replay": "7.91.0",
|
||||
"@sentry/types": "7.91.0",
|
||||
"@sentry/utils": "7.91.0"
|
||||
"@sentry-internal/feedback": "7.120.3",
|
||||
"@sentry-internal/replay-canvas": "7.120.3",
|
||||
"@sentry-internal/tracing": "7.120.3",
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/integrations": "7.120.3",
|
||||
"@sentry/replay": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/core": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.91.0.tgz",
|
||||
"integrity": "sha512-tu+gYq4JrTdrR+YSh5IVHF0fJi/Pi9y0HZ5H9HnYy+UMcXIotxf6hIEaC6ZKGeLWkGXffz2gKpQLe/g6vy/lPA==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.120.3.tgz",
|
||||
"integrity": "sha512-vyy11fCGpkGK3qI5DSXOjgIboBZTriw0YDx/0KyX5CjIjDDNgp5AGgpgFkfZyiYiaU2Ww3iFuKo4wHmBusz1uA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/types": "7.91.0",
|
||||
"@sentry/utils": "7.91.0"
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/integrations": {
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.120.3.tgz",
|
||||
"integrity": "sha512-6i/lYp0BubHPDTg91/uxHvNui427df9r17SsIEXa2eKDwQ9gW2qRx5IWgvnxs2GV/GfSbwcx4swUB3RfEWrXrQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3",
|
||||
"localforage": "^1.8.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/replay": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/replay/-/replay-7.91.0.tgz",
|
||||
"integrity": "sha512-XwbesnLLNtaVXKtDoyBB96GxJuhGi9zy3a662Ba/McmumCnkXrMQYpQPh08U7MgkTyDRgjDwm7PXDhiKpcb03g==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/replay/-/replay-7.120.3.tgz",
|
||||
"integrity": "sha512-CjVq1fP6bpDiX8VQxudD5MPWwatfXk8EJ2jQhJTcWu/4bCSOQmHxnnmBM+GVn5acKUBCodWHBN+IUZgnJheZSg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry-internal/tracing": "7.91.0",
|
||||
"@sentry/core": "7.91.0",
|
||||
"@sentry/types": "7.91.0",
|
||||
"@sentry/utils": "7.91.0"
|
||||
"@sentry-internal/tracing": "7.120.3",
|
||||
"@sentry/core": "7.120.3",
|
||||
"@sentry/types": "7.120.3",
|
||||
"@sentry/utils": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/types": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.91.0.tgz",
|
||||
"integrity": "sha512-bcQnb7J3P3equbCUc+sPuHog2Y47yGD2sCkzmnZBjvBT0Z1B4f36fI/5WjyZhTjLSiOdg3F2otwvikbMjmBDew==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.120.3.tgz",
|
||||
"integrity": "sha512-C4z+3kGWNFJ303FC+FxAd4KkHvxpNFYAFN8iMIgBwJdpIl25KZ8Q/VdGn0MLLUEHNLvjob0+wvwlcRBBNLXOow==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/@sentry/utils": {
|
||||
"version": "7.91.0",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.91.0.tgz",
|
||||
"integrity": "sha512-fvxjrEbk6T6Otu++Ax9ntlQ0sGRiwSC179w68aC3u26Wr30FAIRKqHTCCdc2jyWk7Gd9uWRT/cq+g8NG/8BfSg==",
|
||||
"version": "7.120.3",
|
||||
"resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.120.3.tgz",
|
||||
"integrity": "sha512-UDAOQJtJDxZHQ5Nm1olycBIsz2wdGX8SdzyGVHmD8EOQYAeDZQyIlQYohDe9nazdIOQLZCIc3fU0G9gqVLkaGQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@sentry/types": "7.91.0"
|
||||
"@sentry/types": "7.120.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
|
@ -456,15 +517,17 @@
|
|||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/axios": {
|
||||
"version": "1.6.2",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz",
|
||||
"integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==",
|
||||
"version": "1.7.9",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
||||
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"follow-redirects": "^1.15.0",
|
||||
"follow-redirects": "^1.15.6",
|
||||
"form-data": "^4.0.0",
|
||||
"proxy-from-env": "^1.1.0"
|
||||
}
|
||||
|
@ -474,6 +537,7 @@
|
|||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"delayed-stream": "~1.0.0"
|
||||
},
|
||||
|
@ -486,6 +550,7 @@
|
|||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
|
@ -496,6 +561,7 @@
|
|||
"integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"esbuild": "bin/esbuild"
|
||||
},
|
||||
|
@ -528,9 +594,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/follow-redirects": {
|
||||
"version": "1.15.6",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
|
||||
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
|
||||
"version": "1.15.9",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
|
||||
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
|
@ -538,6 +604,7 @@
|
|||
"url": "https://github.com/sponsors/RubenVerborgh"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=4.0"
|
||||
},
|
||||
|
@ -548,10 +615,11 @@
|
|||
}
|
||||
},
|
||||
"node_modules/form-data": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
|
||||
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
|
||||
"integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"asynckit": "^0.4.0",
|
||||
"combined-stream": "^1.0.8",
|
||||
|
@ -567,6 +635,7 @@
|
|||
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
|
@ -575,11 +644,18 @@
|
|||
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/immediate": {
|
||||
"version": "3.0.6",
|
||||
"resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
|
||||
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/laravel-vite-plugin": {
|
||||
"version": "0.7.8",
|
||||
"resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-0.7.8.tgz",
|
||||
"integrity": "sha512-HWYqpQYHR3kEQ1LsHX7gHJoNNf0bz5z5mDaHBLzS+PGLCTmYqlU5/SZyeEgObV7z7bC/cnStYcY9H1DI1D5Udg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"picocolors": "^1.0.0",
|
||||
"vite-plugin-full-reload": "^1.0.5"
|
||||
|
@ -591,11 +667,30 @@
|
|||
"vite": "^3.0.0 || ^4.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/lie": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz",
|
||||
"integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"immediate": "~3.0.5"
|
||||
}
|
||||
},
|
||||
"node_modules/localforage": {
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz",
|
||||
"integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"lie": "3.1.1"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-db": {
|
||||
"version": "1.52.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
||||
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
|
@ -605,6 +700,7 @@
|
|||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
||||
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"mime-db": "1.52.0"
|
||||
},
|
||||
|
@ -613,9 +709,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/nanoid": {
|
||||
"version": "3.3.7",
|
||||
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
|
||||
"integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
|
||||
"version": "3.3.8",
|
||||
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
|
||||
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
|
@ -623,6 +719,7 @@
|
|||
"url": "https://github.com/sponsors/ai"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"nanoid": "bin/nanoid.cjs"
|
||||
},
|
||||
|
@ -631,16 +728,18 @@
|
|||
}
|
||||
},
|
||||
"node_modules/picocolors": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
|
||||
"integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
|
||||
"dev": true
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
||||
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
||||
"dev": true,
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/picomatch": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
||||
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8.6"
|
||||
},
|
||||
|
@ -649,9 +748,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/postcss": {
|
||||
"version": "8.4.32",
|
||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz",
|
||||
"integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==",
|
||||
"version": "8.5.1",
|
||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz",
|
||||
"integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
|
@ -667,10 +766,11 @@
|
|||
"url": "https://github.com/sponsors/ai"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"nanoid": "^3.3.7",
|
||||
"picocolors": "^1.0.0",
|
||||
"source-map-js": "^1.0.2"
|
||||
"nanoid": "^3.3.8",
|
||||
"picocolors": "^1.1.1",
|
||||
"source-map-js": "^1.2.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^10 || ^12 || >=14"
|
||||
|
@ -680,13 +780,15 @@
|
|||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
||||
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/rollup": {
|
||||
"version": "3.29.4",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz",
|
||||
"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
|
||||
"version": "3.29.5",
|
||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz",
|
||||
"integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"rollup": "dist/bin/rollup"
|
||||
},
|
||||
|
@ -699,19 +801,21 @@
|
|||
}
|
||||
},
|
||||
"node_modules/source-map-js": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
|
||||
"integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
||||
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
||||
"dev": true,
|
||||
"license": "BSD-3-Clause",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/vite": {
|
||||
"version": "4.5.3",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz",
|
||||
"integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==",
|
||||
"version": "4.5.5",
|
||||
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.5.tgz",
|
||||
"integrity": "sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"esbuild": "^0.18.10",
|
||||
"postcss": "^8.4.27",
|
||||
|
@ -763,10 +867,11 @@
|
|||
}
|
||||
},
|
||||
"node_modules/vite-plugin-full-reload": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.1.0.tgz",
|
||||
"integrity": "sha512-3cObNDzX6DdfhD9E7kf6w2mNunFpD7drxyNgHLw+XwIYAgb+Xt16SEXo0Up4VH+TMf3n+DSVJZtW2POBGcBYAA==",
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz",
|
||||
"integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"picocolors": "^1.0.0",
|
||||
"picomatch": "^2.3.1"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #40318d;
|
||||
--background-secondary: #483c8b;
|
||||
--foreground: #f7f7f7;
|
||||
--links: #67b6bd;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
:root {
|
||||
--ctp-frappe-rosewater: #f2d5cf;
|
||||
--ctp-frappe-rosewater-rgb: 242 213 207;
|
||||
--ctp-frappe-rosewater-hsl: 10.286 57.377% 88.039%;
|
||||
--ctp-frappe-flamingo: #eebebe;
|
||||
--ctp-frappe-flamingo-rgb: 238 190 190;
|
||||
--ctp-frappe-flamingo-hsl: 0.000 58.537% 83.922%;
|
||||
--ctp-frappe-pink: #f4b8e4;
|
||||
--ctp-frappe-pink-rgb: 244 184 228;
|
||||
--ctp-frappe-pink-hsl: 316.000 73.171% 83.922%;
|
||||
--ctp-frappe-mauve: #ca9ee6;
|
||||
--ctp-frappe-mauve-rgb: 202 158 230;
|
||||
--ctp-frappe-mauve-hsl: 276.667 59.016% 76.078%;
|
||||
--ctp-frappe-red: #e78284;
|
||||
--ctp-frappe-red-rgb: 231 130 132;
|
||||
--ctp-frappe-red-hsl: 358.812 67.785% 70.784%;
|
||||
--ctp-frappe-maroon: #ea999c;
|
||||
--ctp-frappe-maroon-rgb: 234 153 156;
|
||||
--ctp-frappe-maroon-hsl: 357.778 65.854% 75.882%;
|
||||
--ctp-frappe-peach: #ef9f76;
|
||||
--ctp-frappe-peach-rgb: 239 159 118;
|
||||
--ctp-frappe-peach-hsl: 20.331 79.085% 70.000%;
|
||||
--ctp-frappe-yellow: #e5c890;
|
||||
--ctp-frappe-yellow-rgb: 229 200 144;
|
||||
--ctp-frappe-yellow-hsl: 39.529 62.044% 73.137%;
|
||||
--ctp-frappe-green: #a6d189;
|
||||
--ctp-frappe-green-rgb: 166 209 137;
|
||||
--ctp-frappe-green-hsl: 95.833 43.902% 67.843%;
|
||||
--ctp-frappe-teal: #81c8be;
|
||||
--ctp-frappe-teal-rgb: 129 200 190;
|
||||
--ctp-frappe-teal-hsl: 171.549 39.227% 64.510%;
|
||||
--ctp-frappe-sky: #99d1db;
|
||||
--ctp-frappe-sky-rgb: 153 209 219;
|
||||
--ctp-frappe-sky-hsl: 189.091 47.826% 72.941%;
|
||||
--ctp-frappe-sapphire: #85c1dc;
|
||||
--ctp-frappe-sapphire-rgb: 133 193 220;
|
||||
--ctp-frappe-sapphire-hsl: 198.621 55.414% 69.216%;
|
||||
--ctp-frappe-blue: #8caaee;
|
||||
--ctp-frappe-blue-rgb: 140 170 238;
|
||||
--ctp-frappe-blue-hsl: 221.633 74.242% 74.118%;
|
||||
--ctp-frappe-lavender: #babbf1;
|
||||
--ctp-frappe-lavender-rgb: 186 187 241;
|
||||
--ctp-frappe-lavender-hsl: 238.909 66.265% 83.725%;
|
||||
--ctp-frappe-text: #c6d0f5;
|
||||
--ctp-frappe-text-rgb: 198 208 245;
|
||||
--ctp-frappe-text-hsl: 227.234 70.149% 86.863%;
|
||||
--ctp-frappe-subtext1: #b5bfe2;
|
||||
--ctp-frappe-subtext1-rgb: 181 191 226;
|
||||
--ctp-frappe-subtext1-hsl: 226.667 43.689% 79.804%;
|
||||
--ctp-frappe-subtext0: #a5adce;
|
||||
--ctp-frappe-subtext0-rgb: 165 173 206;
|
||||
--ctp-frappe-subtext0-hsl: 228.293 29.496% 72.745%;
|
||||
--ctp-frappe-overlay2: #949cbb;
|
||||
--ctp-frappe-overlay2-rgb: 148 156 187;
|
||||
--ctp-frappe-overlay2-hsl: 227.692 22.286% 65.686%;
|
||||
--ctp-frappe-overlay1: #838ba7;
|
||||
--ctp-frappe-overlay1-rgb: 131 139 167;
|
||||
--ctp-frappe-overlay1-hsl: 226.667 16.981% 58.431%;
|
||||
--ctp-frappe-overlay0: #737994;
|
||||
--ctp-frappe-overlay0-rgb: 115 121 148;
|
||||
--ctp-frappe-overlay0-hsl: 229.091 13.360% 51.569%;
|
||||
--ctp-frappe-surface2: #626880;
|
||||
--ctp-frappe-surface2-rgb: 98 104 128;
|
||||
--ctp-frappe-surface2-hsl: 228.000 13.274% 44.314%;
|
||||
--ctp-frappe-surface1: #51576d;
|
||||
--ctp-frappe-surface1-rgb: 81 87 109;
|
||||
--ctp-frappe-surface1-hsl: 227.143 14.737% 37.255%;
|
||||
--ctp-frappe-surface0: #414559;
|
||||
--ctp-frappe-surface0-rgb: 65 69 89;
|
||||
--ctp-frappe-surface0-hsl: 230.000 15.584% 30.196%;
|
||||
--ctp-frappe-base: #303446;
|
||||
--ctp-frappe-base-rgb: 48 52 70;
|
||||
--ctp-frappe-base-hsl: 229.091 18.644% 23.137%;
|
||||
--ctp-frappe-mantle: #292c3c;
|
||||
--ctp-frappe-mantle-rgb: 41 44 60;
|
||||
--ctp-frappe-mantle-hsl: 230.526 18.812% 19.804%;
|
||||
--ctp-frappe-crust: #232634;
|
||||
--ctp-frappe-crust-rgb: 35 38 52;
|
||||
--ctp-frappe-crust-hsl: 229.412 19.540% 17.059%;
|
||||
}
|
||||
|
||||
:root {
|
||||
--page-width: 900px;
|
||||
--sidebar-width: 15rem;
|
||||
--firefox-shadow: 0 0 20px;
|
||||
--foreground: var(--ctp-frappe-text);
|
||||
--background: var(--ctp-frappe-crust);
|
||||
--background-secondary: var(--ctp-frappe-surface0);
|
||||
--links: var(--ctp-frappe-sapphire);
|
||||
--shadow: #cdd6f44f;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
:root {
|
||||
--ctp-latte-rosewater: #dc8a78;
|
||||
--ctp-latte-rosewater-rgb: 220 138 120;
|
||||
--ctp-latte-rosewater-hsl: 10.800 58.824% 66.667%;
|
||||
--ctp-latte-flamingo: #dd7878;
|
||||
--ctp-latte-flamingo-rgb: 221 120 120;
|
||||
--ctp-latte-flamingo-hsl: 0.000 59.763% 66.863%;
|
||||
--ctp-latte-pink: #ea76cb;
|
||||
--ctp-latte-pink-rgb: 234 118 203;
|
||||
--ctp-latte-pink-hsl: 316.034 73.418% 69.020%;
|
||||
--ctp-latte-mauve: #8839ef;
|
||||
--ctp-latte-mauve-rgb: 136 57 239;
|
||||
--ctp-latte-mauve-hsl: 266.044 85.047% 58.039%;
|
||||
--ctp-latte-red: #d20f39;
|
||||
--ctp-latte-red-rgb: 210 15 57;
|
||||
--ctp-latte-red-hsl: 347.077 86.667% 44.118%;
|
||||
--ctp-latte-maroon: #e64553;
|
||||
--ctp-latte-maroon-rgb: 230 69 83;
|
||||
--ctp-latte-maroon-hsl: 354.783 76.303% 58.627%;
|
||||
--ctp-latte-peach: #fe640b;
|
||||
--ctp-latte-peach-rgb: 254 100 11;
|
||||
--ctp-latte-peach-hsl: 21.975 99.184% 51.961%;
|
||||
--ctp-latte-yellow: #df8e1d;
|
||||
--ctp-latte-yellow-rgb: 223 142 29;
|
||||
--ctp-latte-yellow-hsl: 34.948 76.984% 49.412%;
|
||||
--ctp-latte-green: #40a02b;
|
||||
--ctp-latte-green-rgb: 64 160 43;
|
||||
--ctp-latte-green-hsl: 109.231 57.635% 39.804%;
|
||||
--ctp-latte-teal: #179299;
|
||||
--ctp-latte-teal-rgb: 23 146 153;
|
||||
--ctp-latte-teal-hsl: 183.231 73.864% 34.510%;
|
||||
--ctp-latte-sky: #04a5e5;
|
||||
--ctp-latte-sky-rgb: 4 165 229;
|
||||
--ctp-latte-sky-hsl: 197.067 96.567% 45.686%;
|
||||
--ctp-latte-sapphire: #209fb5;
|
||||
--ctp-latte-sapphire-rgb: 32 159 181;
|
||||
--ctp-latte-sapphire-hsl: 188.859 69.953% 41.765%;
|
||||
--ctp-latte-blue: #1e66f5;
|
||||
--ctp-latte-blue-rgb: 30 102 245;
|
||||
--ctp-latte-blue-hsl: 219.907 91.489% 53.922%;
|
||||
--ctp-latte-lavender: #7287fd;
|
||||
--ctp-latte-lavender-rgb: 114 135 253;
|
||||
--ctp-latte-lavender-hsl: 230.935 97.203% 71.961%;
|
||||
--ctp-latte-text: #4c4f69;
|
||||
--ctp-latte-text-rgb: 76 79 105;
|
||||
--ctp-latte-text-hsl: 233.793 16.022% 35.490%;
|
||||
--ctp-latte-subtext1: #5c5f77;
|
||||
--ctp-latte-subtext1-rgb: 92 95 119;
|
||||
--ctp-latte-subtext1-hsl: 233.333 12.796% 41.373%;
|
||||
--ctp-latte-subtext0: #6c6f85;
|
||||
--ctp-latte-subtext0-rgb: 108 111 133;
|
||||
--ctp-latte-subtext0-hsl: 232.800 10.373% 47.255%;
|
||||
--ctp-latte-overlay2: #7c7f93;
|
||||
--ctp-latte-overlay2-rgb: 124 127 147;
|
||||
--ctp-latte-overlay2-hsl: 232.174 9.623% 53.137%;
|
||||
--ctp-latte-overlay1: #8c8fa1;
|
||||
--ctp-latte-overlay1-rgb: 140 143 161;
|
||||
--ctp-latte-overlay1-hsl: 231.429 10.048% 59.020%;
|
||||
--ctp-latte-overlay0: #9ca0b0;
|
||||
--ctp-latte-overlay0-rgb: 156 160 176;
|
||||
--ctp-latte-overlay0-hsl: 228.000 11.236% 65.098%;
|
||||
--ctp-latte-surface2: #acb0be;
|
||||
--ctp-latte-surface2-rgb: 172 176 190;
|
||||
--ctp-latte-surface2-hsl: 226.667 12.162% 70.980%;
|
||||
--ctp-latte-surface1: #bcc0cc;
|
||||
--ctp-latte-surface1-rgb: 188 192 204;
|
||||
--ctp-latte-surface1-hsl: 225.000 13.559% 76.863%;
|
||||
--ctp-latte-surface0: #ccd0da;
|
||||
--ctp-latte-surface0-rgb: 204 208 218;
|
||||
--ctp-latte-surface0-hsl: 222.857 15.909% 82.745%;
|
||||
--ctp-latte-base: #eff1f5;
|
||||
--ctp-latte-base-rgb: 239 241 245;
|
||||
--ctp-latte-base-hsl: 220.000 23.077% 94.902%;
|
||||
--ctp-latte-mantle: #e6e9ef;
|
||||
--ctp-latte-mantle-rgb: 230 233 239;
|
||||
--ctp-latte-mantle-hsl: 220.000 21.951% 91.961%;
|
||||
--ctp-latte-crust: #dce0e8;
|
||||
--ctp-latte-crust-rgb: 220 224 232;
|
||||
--ctp-latte-crust-hsl: 220.000 20.690% 88.627%;
|
||||
}
|
||||
|
||||
:root {
|
||||
--page-width: 900px;
|
||||
--sidebar-width: 15rem;
|
||||
--firefox-shadow: 0 0 20px;
|
||||
--foreground: var(--ctp-latte-text);
|
||||
--background: var(--ctp-latte-crust);
|
||||
--background-secondary: var(--ctp-latte-surface0);
|
||||
--links: var(--ctp-latte-sapphire);
|
||||
--shadow: #cdd6f44f;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
:root {
|
||||
--ctp-macchiato-rosewater: #f4dbd6;
|
||||
--ctp-macchiato-rosewater-rgb: 244 219 214;
|
||||
--ctp-macchiato-rosewater-hsl: 10.000 57.692% 89.804%;
|
||||
--ctp-macchiato-flamingo: #f0c6c6;
|
||||
--ctp-macchiato-flamingo-rgb: 240 198 198;
|
||||
--ctp-macchiato-flamingo-hsl: 0.000 58.333% 85.882%;
|
||||
--ctp-macchiato-pink: #f5bde6;
|
||||
--ctp-macchiato-pink-rgb: 245 189 230;
|
||||
--ctp-macchiato-pink-hsl: 316.071 73.684% 85.098%;
|
||||
--ctp-macchiato-mauve: #c6a0f6;
|
||||
--ctp-macchiato-mauve-rgb: 198 160 246;
|
||||
--ctp-macchiato-mauve-hsl: 266.512 82.692% 79.608%;
|
||||
--ctp-macchiato-red: #ed8796;
|
||||
--ctp-macchiato-red-rgb: 237 135 150;
|
||||
--ctp-macchiato-red-hsl: 351.176 73.913% 72.941%;
|
||||
--ctp-macchiato-maroon: #ee99a0;
|
||||
--ctp-macchiato-maroon-rgb: 238 153 160;
|
||||
--ctp-macchiato-maroon-hsl: 355.059 71.429% 76.667%;
|
||||
--ctp-macchiato-peach: #f5a97f;
|
||||
--ctp-macchiato-peach-rgb: 245 169 127;
|
||||
--ctp-macchiato-peach-hsl: 21.356 85.507% 72.941%;
|
||||
--ctp-macchiato-yellow: #eed49f;
|
||||
--ctp-macchiato-yellow-rgb: 238 212 159;
|
||||
--ctp-macchiato-yellow-hsl: 40.253 69.912% 77.843%;
|
||||
--ctp-macchiato-green: #a6da95;
|
||||
--ctp-macchiato-green-rgb: 166 218 149;
|
||||
--ctp-macchiato-green-hsl: 105.217 48.252% 71.961%;
|
||||
--ctp-macchiato-teal: #8bd5ca;
|
||||
--ctp-macchiato-teal-rgb: 139 213 202;
|
||||
--ctp-macchiato-teal-hsl: 171.081 46.835% 69.020%;
|
||||
--ctp-macchiato-sky: #91d7e3;
|
||||
--ctp-macchiato-sky-rgb: 145 215 227;
|
||||
--ctp-macchiato-sky-hsl: 188.780 59.420% 72.941%;
|
||||
--ctp-macchiato-sapphire: #7dc4e4;
|
||||
--ctp-macchiato-sapphire-rgb: 125 196 228;
|
||||
--ctp-macchiato-sapphire-hsl: 198.641 65.605% 69.216%;
|
||||
--ctp-macchiato-blue: #8aadf4;
|
||||
--ctp-macchiato-blue-rgb: 138 173 244;
|
||||
--ctp-macchiato-blue-hsl: 220.189 82.813% 74.902%;
|
||||
--ctp-macchiato-lavender: #b7bdf8;
|
||||
--ctp-macchiato-lavender-rgb: 183 189 248;
|
||||
--ctp-macchiato-lavender-hsl: 234.462 82.278% 84.510%;
|
||||
--ctp-macchiato-text: #cad3f5;
|
||||
--ctp-macchiato-text-rgb: 202 211 245;
|
||||
--ctp-macchiato-text-hsl: 227.442 68.254% 87.647%;
|
||||
--ctp-macchiato-subtext1: #b8c0e0;
|
||||
--ctp-macchiato-subtext1-rgb: 184 192 224;
|
||||
--ctp-macchiato-subtext1-hsl: 228.000 39.216% 80.000%;
|
||||
--ctp-macchiato-subtext0: #a5adcb;
|
||||
--ctp-macchiato-subtext0-rgb: 165 173 203;
|
||||
--ctp-macchiato-subtext0-hsl: 227.368 26.761% 72.157%;
|
||||
--ctp-macchiato-overlay2: #939ab7;
|
||||
--ctp-macchiato-overlay2-rgb: 147 154 183;
|
||||
--ctp-macchiato-overlay2-hsl: 228.333 20.000% 64.706%;
|
||||
--ctp-macchiato-overlay1: #8087a2;
|
||||
--ctp-macchiato-overlay1-rgb: 128 135 162;
|
||||
--ctp-macchiato-overlay1-hsl: 227.647 15.455% 56.863%;
|
||||
--ctp-macchiato-overlay0: #6e738d;
|
||||
--ctp-macchiato-overlay0-rgb: 110 115 141;
|
||||
--ctp-macchiato-overlay0-hsl: 230.323 12.351% 49.216%;
|
||||
--ctp-macchiato-surface2: #5b6078;
|
||||
--ctp-macchiato-surface2-rgb: 91 96 120;
|
||||
--ctp-macchiato-surface2-hsl: 229.655 13.744% 41.373%;
|
||||
--ctp-macchiato-surface1: #494d64;
|
||||
--ctp-macchiato-surface1-rgb: 73 77 100;
|
||||
--ctp-macchiato-surface1-hsl: 231.111 15.607% 33.922%;
|
||||
--ctp-macchiato-surface0: #363a4f;
|
||||
--ctp-macchiato-surface0-rgb: 54 58 79;
|
||||
--ctp-macchiato-surface0-hsl: 230.400 18.797% 26.078%;
|
||||
--ctp-macchiato-base: #24273a;
|
||||
--ctp-macchiato-base-rgb: 36 39 58;
|
||||
--ctp-macchiato-base-hsl: 231.818 23.404% 18.431%;
|
||||
--ctp-macchiato-mantle: #1e2030;
|
||||
--ctp-macchiato-mantle-rgb: 30 32 48;
|
||||
--ctp-macchiato-mantle-hsl: 233.333 23.077% 15.294%;
|
||||
--ctp-macchiato-crust: #181926;
|
||||
--ctp-macchiato-crust-rgb: 24 25 38;
|
||||
--ctp-macchiato-crust-hsl: 235.714 22.581% 12.157%;
|
||||
}
|
||||
|
||||
:root {
|
||||
--page-width: 900px;
|
||||
--sidebar-width: 15rem;
|
||||
--firefox-shadow: 0 0 20px;
|
||||
--foreground: var(--ctp-macchiato-text);
|
||||
--background: var(--ctp-macchiato-crust);
|
||||
--background-secondary: var(--ctp-macchiato-surface0);
|
||||
--links: var(--ctp-macchiato-sapphire);
|
||||
--shadow: #cdd6f44f;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
:root {
|
||||
--ctp-mocha-rosewater: #f5e0dc;
|
||||
--ctp-mocha-rosewater-rgb: 245 224 220;
|
||||
--ctp-mocha-rosewater-hsl: 9.600 55.556% 91.176%;
|
||||
--ctp-mocha-flamingo: #f2cdcd;
|
||||
--ctp-mocha-flamingo-rgb: 242 205 205;
|
||||
--ctp-mocha-flamingo-hsl: 0.000 58.730% 87.647%;
|
||||
--ctp-mocha-pink: #f5c2e7;
|
||||
--ctp-mocha-pink-rgb: 245 194 231;
|
||||
--ctp-mocha-pink-hsl: 316.471 71.831% 86.078%;
|
||||
--ctp-mocha-mauve: #cba6f7;
|
||||
--ctp-mocha-mauve-rgb: 203 166 247;
|
||||
--ctp-mocha-mauve-hsl: 267.407 83.505% 80.980%;
|
||||
--ctp-mocha-red: #f38ba8;
|
||||
--ctp-mocha-red-rgb: 243 139 168;
|
||||
--ctp-mocha-red-hsl: 343.269 81.250% 74.902%;
|
||||
--ctp-mocha-maroon: #eba0ac;
|
||||
--ctp-mocha-maroon-rgb: 235 160 172;
|
||||
--ctp-mocha-maroon-hsl: 350.400 65.217% 77.451%;
|
||||
--ctp-mocha-peach: #fab387;
|
||||
--ctp-mocha-peach-rgb: 250 179 135;
|
||||
--ctp-mocha-peach-hsl: 22.957 92.000% 75.490%;
|
||||
--ctp-mocha-yellow: #f9e2af;
|
||||
--ctp-mocha-yellow-rgb: 249 226 175;
|
||||
--ctp-mocha-yellow-hsl: 41.351 86.047% 83.137%;
|
||||
--ctp-mocha-green: #a6e3a1;
|
||||
--ctp-mocha-green-rgb: 166 227 161;
|
||||
--ctp-mocha-green-hsl: 115.455 54.098% 76.078%;
|
||||
--ctp-mocha-teal: #94e2d5;
|
||||
--ctp-mocha-teal-rgb: 148 226 213;
|
||||
--ctp-mocha-teal-hsl: 170.000 57.353% 73.333%;
|
||||
--ctp-mocha-sky: #89dceb;
|
||||
--ctp-mocha-sky-rgb: 137 220 235;
|
||||
--ctp-mocha-sky-hsl: 189.184 71.014% 72.941%;
|
||||
--ctp-mocha-sapphire: #74c7ec;
|
||||
--ctp-mocha-sapphire-rgb: 116 199 236;
|
||||
--ctp-mocha-sapphire-hsl: 198.500 75.949% 69.020%;
|
||||
--ctp-mocha-blue: #89b4fa;
|
||||
--ctp-mocha-blue-rgb: 137 180 250;
|
||||
--ctp-mocha-blue-hsl: 217.168 91.870% 75.882%;
|
||||
--ctp-mocha-lavender: #b4befe;
|
||||
--ctp-mocha-lavender-rgb: 180 190 254;
|
||||
--ctp-mocha-lavender-hsl: 231.892 97.368% 85.098%;
|
||||
--ctp-mocha-text: #cdd6f4;
|
||||
--ctp-mocha-text-rgb: 205 214 244;
|
||||
--ctp-mocha-text-hsl: 226.154 63.934% 88.039%;
|
||||
--ctp-mocha-subtext1: #bac2de;
|
||||
--ctp-mocha-subtext1-rgb: 186 194 222;
|
||||
--ctp-mocha-subtext1-hsl: 226.667 35.294% 80.000%;
|
||||
--ctp-mocha-subtext0: #a6adc8;
|
||||
--ctp-mocha-subtext0-rgb: 166 173 200;
|
||||
--ctp-mocha-subtext0-hsl: 227.647 23.611% 71.765%;
|
||||
--ctp-mocha-overlay2: #9399b2;
|
||||
--ctp-mocha-overlay2-rgb: 147 153 178;
|
||||
--ctp-mocha-overlay2-hsl: 228.387 16.757% 63.725%;
|
||||
--ctp-mocha-overlay1: #7f849c;
|
||||
--ctp-mocha-overlay1-rgb: 127 132 156;
|
||||
--ctp-mocha-overlay1-hsl: 229.655 12.775% 55.490%;
|
||||
--ctp-mocha-overlay0: #6c7086;
|
||||
--ctp-mocha-overlay0-rgb: 108 112 134;
|
||||
--ctp-mocha-overlay0-hsl: 230.769 10.744% 47.451%;
|
||||
--ctp-mocha-surface2: #585b70;
|
||||
--ctp-mocha-surface2-rgb: 88 91 112;
|
||||
--ctp-mocha-surface2-hsl: 232.500 12.000% 39.216%;
|
||||
--ctp-mocha-surface1: #45475a;
|
||||
--ctp-mocha-surface1-rgb: 69 71 90;
|
||||
--ctp-mocha-surface1-hsl: 234.286 13.208% 31.176%;
|
||||
--ctp-mocha-surface0: #313244;
|
||||
--ctp-mocha-surface0-rgb: 49 50 68;
|
||||
--ctp-mocha-surface0-hsl: 236.842 16.239% 22.941%;
|
||||
--ctp-mocha-base: #1e1e2e;
|
||||
--ctp-mocha-base-rgb: 30 30 46;
|
||||
--ctp-mocha-base-hsl: 240.000 21.053% 14.902%;
|
||||
--ctp-mocha-mantle: #181825;
|
||||
--ctp-mocha-mantle-rgb: 24 24 37;
|
||||
--ctp-mocha-mantle-hsl: 240.000 21.311% 11.961%;
|
||||
--ctp-mocha-crust: #11111b;
|
||||
--ctp-mocha-crust-rgb: 17 17 27;
|
||||
--ctp-mocha-crust-hsl: 240.000 22.727% 8.627%;
|
||||
}
|
||||
|
||||
:root {
|
||||
--page-width: 900px;
|
||||
--sidebar-width: 15rem;
|
||||
--firefox-shadow: 0 0 20px;
|
||||
--foreground: var(--ctp-mocha-text);
|
||||
--background: var(--ctp-mocha-crust);
|
||||
--background-secondary: var(--ctp-mocha-surface0);
|
||||
--links: var(--ctp-mocha-sapphire);
|
||||
--shadow: #cdd6f44f;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #282828;
|
||||
--background-secondary: #928374;
|
||||
--foreground: #ebdbb2;
|
||||
--links: #458588;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #282828;
|
||||
--background-secondary: #3c3836;
|
||||
--foreground: #d4be98;
|
||||
--links: #7daea3;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #fbf1c7;
|
||||
--background-secondary: #928374;
|
||||
--foreground: #3c3836;
|
||||
--links: #458588;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #31363a;
|
||||
--background-secondary: #4c4f4d;
|
||||
--foreground: #e8e8e8;
|
||||
--links: #13bf9d;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #fef49c;
|
||||
--background-secondary: #e5e500;
|
||||
--foreground: #000000;
|
||||
--links: #b200b2;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #2b1900;
|
||||
--background-secondary: #402500;
|
||||
--foreground: #ff9400;
|
||||
--links: #ffc28a;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #00222B;
|
||||
--background-secondary: #003340;
|
||||
--foreground: #00CCFF;
|
||||
--links: #ccf0ff;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #022B00;
|
||||
--background-secondary: #034000;
|
||||
--foreground: #0BFF00;
|
||||
--links: #b6ffb1;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #2B0C00;
|
||||
--background-secondary: #401200;
|
||||
--foreground: #FF3600;
|
||||
--links: #ffb09c;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #262626;
|
||||
--background-secondary: #3B3B3B;
|
||||
--foreground: #FAFAFA;
|
||||
--links: #a9a9a9;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
:root {
|
||||
--background: #2B2400;
|
||||
--background-secondary: #403500;
|
||||
--foreground: #FFD300;
|
||||
--links: #ffe8a2;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #1C1C1C;
|
||||
--background-secondary: #585858;
|
||||
--foreground: #D0D0D0;
|
||||
--links: #5FAFD7;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #EEEEEE;
|
||||
--background-secondary: #BCBCBC;
|
||||
--foreground: #444444;
|
||||
--links: #0087AF;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #F2E9E1;
|
||||
--background-secondary: #9893A5;
|
||||
--foreground: #575279;
|
||||
--links: #907AA9;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #393552;
|
||||
--background-secondary: #6E6A86;
|
||||
--foreground: #E0DEF4;
|
||||
--links: #C4A7E7;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #26233A;
|
||||
--background-secondary: #6E6A86;
|
||||
--foreground: #E0DEF4;
|
||||
--links: #C4A7E7;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #2C2423;
|
||||
--background-secondary: #918988;
|
||||
--foreground: #F5EEEC;
|
||||
--links: #2C64A2;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #222222;
|
||||
--background-secondary: #494949;
|
||||
--foreground: #E0E0E0;
|
||||
--links: #02C5E0;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #073642;
|
||||
--background-secondary: #657B83;
|
||||
--foreground: #FDF6E3;
|
||||
--links: #2699FF;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #FDF6E3;
|
||||
--background-secondary: #EEE8D5;
|
||||
--foreground: #073642;
|
||||
--links: #268BD2;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
:root {
|
||||
--background: #FFFFFF;
|
||||
--background-secondary: #bfbfbf;
|
||||
--foreground: #000000;
|
||||
--links: #0000ff;
|
||||
--warning: #ff7272;
|
||||
--warning-box-bg: #f64a3c;
|
||||
--warning-box-border: #c81a11;
|
||||
}
|
||||
|
||||
html {
|
||||
color-scheme: light;
|
||||
}
|
|
@ -1,20 +1,6 @@
|
|||
:root {
|
||||
--background: #f2efbd;
|
||||
--background-dim: hsl(57, 85%, 85%);
|
||||
--foreground: #2a271c;
|
||||
--border-color: #f27405;
|
||||
--border: var(--border-color) 2px solid;
|
||||
--shadow-color: hsla(11, 96%, 43%, 0.4);
|
||||
--shadow: drop-shadow(8px 8px var(--shadow-color));
|
||||
--shadow-small: drop-shadow(3px 3px var(--shadow-color));
|
||||
--links: hsl(183, 93%, 27%);
|
||||
--links-hover: hsl(183, 93%, 15%);
|
||||
--table-header: hsla(11, 96%, 43%, 0.2);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
background-color: #f2efbd;
|
||||
color: #2a271c;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
|
@ -23,12 +9,12 @@ img {
|
|||
}
|
||||
|
||||
a {
|
||||
color: var(--links);
|
||||
color: hsl(183, 93%, 27%);
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--links-hover);
|
||||
color: hsl(183, 93%, 15%);
|
||||
text-decoration: underline solid;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<x-layout>
|
||||
<x-slot:title>Music</x-slot:title>
|
||||
<x-current-track :track="$current_track"/>
|
||||
<x-top-tracks :tracks="$top_tracks"/>
|
||||
<x-lastfm-current :track="$current_track"/>
|
||||
<x-lastfm-top :tracks="$top_tracks"/>
|
||||
</x-layout>
|
||||
|
|
Loading…
Reference in a new issue