Nouveaux fichiers de thème avec les couleurs plus contrastées

This commit is contained in:
François Pelletier 2025-01-08 11:11:22 -05:00
parent c4184e8323
commit b5c925e175
201 changed files with 4285 additions and 962 deletions

34
backend/convert_svg.sh Executable file
View file

@ -0,0 +1,34 @@
#!/bin/bash
# Check if Inkscape is installed
if ! command -v inkscape &> /dev/null
then
echo "Inkscape is not installed. Please install it and try again."
exit 1
fi
# Root directory to start the search
ROOT_DIR="styles"
# Function to convert SVG to PNG and PDF
convert_svg() {
local svg_file="$1"
local dir=$(dirname "$svg_file")
local filename=$(basename -- "$svg_file")
local filename="${filename%.*}"
# Convert to PNG
inkscape --export-type=png --export-filename="${dir}/${filename}.png" "$svg_file"
# Convert to PDF
inkscape --export-type=pdf --export-filename="${dir}/${filename}.pdf" "$svg_file"
echo "Converted $svg_file to PNG and PDF"
}
# Find all SVG files recursively and convert them
find "$ROOT_DIR" -type f -name "*.svg" | while read svg_file; do
convert_svg "$svg_file"
done
echo "Conversion complete!"