From 46251292b5c8b431de66aeff473594ccec60e04c Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 20 Jul 2023 18:29:09 +0200 Subject: Updated 19 files and added 26 files (automated) --- icons.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 icons.php (limited to 'icons.php') diff --git a/icons.php b/icons.php new file mode 100644 index 0000000..6babbdc --- /dev/null +++ b/icons.php @@ -0,0 +1,29 @@ + 0 && hexdec($_GET["color"]) < 16777215) { + $color = trim($_GET["color"]); + } else { + $color = "000000"; + } +} else { + $color = "000000"; +} + +header("Content-Type: image/svg+xml"); + +echo(str_replace(' width="48">', ' width="48" fill="#' . $color . '">', file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/assets/icons/new/" . $name))); \ No newline at end of file -- cgit