Last active
October 8, 2024 00:23
-
-
Save forcequitOS/f8d7e006f80a2c78e378f093608667fa to your computer and use it in GitHub Desktop.
Apple Watch Face List for JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is a list of Apple Watch Face analytics identifiers and their corresponding branding names to use in JavaScript | |
// Freshly (re-)updated for watchOS 11. Watch face data has been obtained from watchOS 7.x, 10.x, and 11.x. | |
// Feel free to contribute! Especially if you have any Hermes Apple Watch model or an Apple Watch Ultra. | |
const faceDB = { | |
"xlarge-r": "X-Large", | |
"globetrotter": "World Time", | |
"smoke-r": "Vapor", | |
"utility-r": "Utility", | |
"renegade": "Unity", | |
"coltan": "Unity Lights", | |
"extragalactic": "Unity Mosaic", | |
"com.apple.rhizomeface": "Unity Bloom", | |
"greyhound": "Typograph", | |
"infinity": "Toy Story", | |
"timelapse": "Timelapse", | |
"margarita": "Stripes", | |
"gladius": "Solar Analog", | |
"sidereal": "Solar Dial", | |
"solar": "Solar Graph", | |
"esterbrook": "Snoopy", | |
"up-next-r": "Siri", | |
"simple-r": "Simple", | |
"pride": "Pride Digital", | |
"plumeria": "Pride Radiance", | |
"prideweave": "Pride Woven", | |
"lilypad": "Pride Threads", | |
"com.apple.parameciumface": "Pride Celebration", | |
"ultracube": "Portraits", | |
"snowglobe": "Playtime", | |
"parmesan": "Photos", | |
"crosswind": "Palette", | |
"big-numerals-analog": "Numerals Mono", | |
"big-numerals-digital": "Numerals Duo", | |
"numerals-r": "Numerals", | |
"olympus": "Nike Hybrid", | |
"vivaldi": "Nike Globe", | |
"victory-digital-r": "Nike Digital", | |
"shiba": "Nike Compact", | |
"magma": "Nike Bounce", | |
"victory-analog-r": "Nike Analog", | |
"motion": "Motion", | |
"cloudraker": "Modular Duo", | |
"whistler-subdials": "Modular Compact", | |
"whistler-digital": "Modular", | |
"mickey-r": "Mickey Mouse", | |
"kuiper": "Metropolitan", | |
"blackcomb": "Meridian", | |
"collie": "Memoji", | |
"seltzer": "Lunar", | |
"metallic-r": "Liquid Metal", | |
"kaleidoscope-r": "Kaleidoscope", | |
"whistler-analog": "Infograph", | |
"Hermès": "Hermès", | |
"spectrum-analog": "Gradient", | |
"salmon": "GMT", | |
"fire-water-r": "Fire and Water", | |
"explorer-r": "Explorer", | |
"trout": "Count Up", | |
"proteus": "Contour", | |
"color-r": "Color", | |
"shark": "Chronograph Pro", | |
"chronograph-r": "Chronograph", | |
"california": "California", | |
"breathe-r": "Breathe", | |
"aegir": "Astronomy", | |
"akita": "Artist", | |
"activity-digital-r": "Activity Digital", | |
"activity-analog-r": "Activity Analog", | |
"activity analog": "Legacy Activity Analog", | |
"activity digital": "Legacy Activity Digital", | |
"astronomy": "Legacy Astronomy", | |
"breathe": "Legacy Breathe", | |
"bundle": "Stripes", | |
"chronograph": "Legacy Chronograph", | |
"color": "Legacy Color", | |
"explorer": "Legacy Explorer", | |
"fire-water": "Legacy Fire and Water", | |
"metallic": "Legacy Liquid Metal", | |
"Mickey Mouse": "Legacy Mickey Mouse", | |
"modular": "Legacy Modular", | |
"photos": "Legacy Photos", | |
"victory analog": "Legacy Nike Analog", | |
"victory digital": "Legacy Nike Digital", | |
"numerals": "Legacy Numerals", | |
"simple": "Legacy Simple", | |
"up next": "Legacy Siri", | |
"utility": "Legacy Utility", | |
"smoke": "Legacy Vapor", | |
"x-large": "Legacy X-Large", | |
"atium": "Reflections", | |
"kapacitor": "Flux" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment