Fix CloudFront domain configuration and add missing color definitions

- Configure CloudFront to accept filamenteka.rs with ACM SSL certificate
- Add Cloudflare Transform Rule for Host header rewriting
- Fix Matte Grass Green hex code (#7CB342 -> #61C680)
- Add PLA Wood colors: Ochre Yellow, White Oak, Clay Brown
- Add script for managing color definitions in database
This commit is contained in:
DaX
2025-10-31 02:40:03 +01:00
parent 1ce127c51c
commit c0ca1e4bb3
3 changed files with 125 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ export const bambuLabColors = {
"Matte Dark Chocolate": "#4A3729",
"Matte Dark Green": "#68724D",
"Matte Dark Red": "#BB3D43",
"Matte Grass Green": "#7CB342",
"Matte Grass Green": "#61C680",
"Matte Ice Blue": "#A3D8E1",
"Matte Lemon Yellow": "#F7D959",
"Matte Lilac Purple": "#AE96D4",
@@ -109,7 +109,12 @@ export const bambuLabColors = {
// Support Materials
"Natural": "#F5F5DC",
"Support White": "#F5F5F5",
"Support G": "#90CAF9"
"Support G": "#90CAF9",
// Wood Colors
"Ochre Yellow": "#BC8B39",
"White Oak": "#D2CCA2",
"Clay Brown": "#8E621A"
};
// Colors grouped by finish type for easier selection
@@ -151,6 +156,9 @@ export const colorsByFinish = {
],
"Support": [
"Natural", "Support White", "Support G"
],
"Wood": [
"Ochre Yellow", "White Oak", "Clay Brown"
]
};