Automotive paint is a family, not one thing. The paint on a 1925 Model T (a brushed-on, slow-drying linseed-oil enamel that took weeks to harden), a 1970 Hemi 'Cuda (acrylic enamel sprayed in two coats — Plum Crazy, In-Violet, Sublime, all from this generation), a 1991 Trans Am GTA (basecoat-clearcoat, the deep wet-mirror finish that arrived in the 1980s and has been the OEM standard since), and a 2024 Tesla (waterborne basecoat under the same clearcoat — same look, less solvent in the air) are four different chemistries that share an aesthetic problem: durable color on a steel shell that lives outdoors. Each generation traded away something — speed, gloss, durability, environmental footprint — to fix what the previous one couldn't. ForMatter treats automotive paint as the abstraction; the specific paints (Mopar's high-impact codes, GM's WA codes, Ford's M-codes) are instances of one of these chemistry generations.
Automotive coating chemistry has moved through four broadly recognized generations. (1) NITROCELLULOSE LACQUER (1920s–1950s OEM, 1950s–1970s refinish): cellulose-nitrate dissolved in lacquer thinner, dries by solvent flash only, no chemical cure; rubbed and polished to gloss; refinishable forever because each new coat fuses into the last. Brittle, UV-sensitive, lots of coats required. (2) ACRYLIC ENAMEL / ALKYD ENAMEL (1957–early 1980s OEM): single-stage solvent-borne pigmented enamel, cures by oxidative crosslinking + solvent loss; good gloss out-of-the-gun, less polishing labor than lacquer. The chemistry behind 1970 Mopar high-impact paints (FE5 Bright Red, FJ5 Sublime, EV2 HEMI Orange, FC7 In-Violet, etc.) and most muscle-era OEM finishes. Single-stage means the color and the gloss are the same film. (3) BASECOAT-CLEARCOAT (BC/CC) URETHANE (1980s OEM onward): two-layer system — a thin colored basecoat (often metallic or pearl) carrying the color but matte on its own, then a thick 2K (two-component) urethane clearcoat carrying the gloss, depth, UV protection, and chip resistance. Replaced single-stage everywhere by the early 1990s. The clearcoat is what reads as 'modern car paint.' (4) WATERBORNE BASECOAT + 2K CLEARCOAT (1990s European OEM, 2000s+ global): same architecture as BC/CC but with the color basecoat reformulated around a water carrier instead of solvent — driven by EU and California VOC limits. The clearcoat stayed solvent-borne 2K until very recently; experimental waterborne clears are deployed on some lines. Application: production OEM uses electrostatic robotic spray with bake-cure (140–180 °C) on the body-in-white after e-coat primer; refinish uses HVLP guns with air-dry or low-bake (60 °C) cure. Color matching is spectrophotometric; the OEM paint code on the door jamb or fender tag is the formula reference. Restoration suppliers (PPG, BASF / Glasurit, Axalta — formerly DuPont — Sherwin-Williams, House of Kolor) maintain reduced cross-references for legacy color codes.
Principled BSDF defaults derived from the sphere glossy finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →
# finish: glossy albedo #3a3a40 metallic 0.00 roughness 0.08 ior 1.45 transmission 0.00 clearcoat 0.85 sheen 0.00 anisotropic 0.00
{
"albedo": "#3a3a40",
"metallic": 0.0,
"roughness": 0.08,
"ior": 1.45,
"transmission": 0.0,
"clearcoat": 0.85,
"sheen": 0.0,
"anisotropic": 0.0
}
# Blender 4.x — Principled BSDF
# Automotive Paint (the family) · finish: glossy
import bpy
mat = bpy.data.materials.new(name="mat_automotive_paint")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value = (0.0423, 0.0423, 0.0513, 1.0)
bsdf.inputs["Metallic"].default_value = 0.000
bsdf.inputs["Roughness"].default_value = 0.080
bsdf.inputs["IOR"].default_value = 1.450
bsdf.inputs["Transmission Weight"].default_value = 0.000
bsdf.inputs["Coat Weight"].default_value = 0.850
bsdf.inputs["Sheen Weight"].default_value = 0.000
bsdf.inputs["Anisotropic"].default_value = 0.000
# KeyShot 11+ — lux Python API, Generic material
# Automotive Paint (the family) · finish: glossy
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_automotive_paint", materialType="Generic")
mat.setProperty("diffuse", (58, 58, 64)) # 8-bit sRGB
mat.setProperty("metallic", 0.000)
mat.setProperty("roughness", 0.080)
mat.setProperty("indexOfRefraction", 1.450)
mat.setProperty("transparency", 0.000)
mat.setProperty("coatingWeight", 0.850)
{
"_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
"_about": "Automotive Paint (the family) \u00b7 finish: glossy",
"baseColor": {
"r": 0.0423,
"g": 0.0423,
"b": 0.0513
},
"metallic": 0.0,
"roughness": 0.08,
"ior": 1.45,
"opacity": 1.0,
"anisotropyLevel": 0.0,
"_notes": "Channels listed are the standard Substance pbrMetalRough output. Drop into a Uniform Color node per channel, or as the constant input on a layered stack."
}
{
"asset": {
"version": "2.0",
"generator": "ForMatter"
},
"materials": [
{
"name": "mat_automotive_paint",
"pbrMetallicRoughness": {
"baseColorFactor": [
0.0423,
0.0423,
0.0513,
1.0
],
"metallicFactor": 0.0,
"roughnessFactor": 0.08
},
"extensions": {
"KHR_materials_ior": {
"ior": 1.45
},
"KHR_materials_clearcoat": {
"clearcoatFactor": 0.85
}
}
}
]
}
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Automotive Paint (the family) · finish: glossy
def Material "mat_automotive_paint" {
token outputs:surface.connect = </mat_automotive_paint/PreviewSurface.outputs:surface>
def Shader "PreviewSurface" {
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.0423, 0.0423, 0.0513)
float inputs:metallic = 0.000
float inputs:roughness = 0.080
float inputs:ior = 1.450
float inputs:opacity = 1.000
float inputs:clearcoat = 0.850
token outputs:surface
}
}
PPG / BASF / Axalta / Sherwin-Williams refinish technical bulletins; SAE J1545 (paint film durability); OSHA 1910.1000 isocyanate exposure limits.
House vocabulary — terms ForMatter uses with intent.
Materials and processes for people who design and make things.
A local-first library of materials, processes, applications, and finishes — equal weight, citable everywhere, with cost-over-volume curves, trade-off profiles, equipment-tier filters, and second-life paths layered onto the data so a student can move from "what is this" toward "what's actually buildable here, now, by me." Part of the renato.design ecosystem — sibling of Plenum, Specimen, Ingenue, gesture, graf, and the Renato Rhino plug-ins. Form and matter, inseparable.
Half of teaching materials is teaching how the material is made into the thing. The standard subscription library was always light on that half. The wedge here isn't better samples or a prettier interface — it's treating Process as a peer entity, not a footnote.
Conway's Material World on raw materials, Lefteri's Making It on processes, Forty's Concrete and Culture, Sparke's Design in Context, Bürdek's Design: History, Theory and Practice of Product Design, Schröpfer's Material Design on materials in architecture, Winchester's The Perfectionists on tolerance, Minshall's Your Life Is Manufactured on the global supply chain, von Busch's Making Trouble on material activism, Were's How Materials Matter, Hegger / Drexler / Zeumer's Basics Materials, Untracht and McCreight on metalsmithing, USDA Forest Products Lab on woods, GIA on gemstones, Schott / CoorsTek / Toray / Owens Corning datasheets, MakeItFrom for verifiable property numbers, ASM Handbook, ISO standards. Museum holdings draw from the Met, MAD, V&A, Smithsonian American Art Museum, Newark Museum of Art, British Museum, Heard Museum, Smithsonian NMAI, Eiteljorg Museum, Philadelphia Museum of Art, Cranbrook Art Museum, and Grand Rapids Art Museum — collection-record permalinks only, designer overview pages and exhibition listings excluded. Voice blocks now ride on every entry kind — material, process, application, and finish — and include Ruskin on iron, Anni Albers on twining, Greg Lynn on the shred-and-teeth NURBS lineage, Pugin on the metal that won't be hammered, Barthes / Yanagi / Benjamin channeled within their philosophy; Sparke, Bürdek, Forty, Conway, Schröpfer, Minshall, von Busch, Lefteri, Pat Pruitt, Mary Lee Hu, Tom Joyce, Albert Paley, and the rest of the contemporary makers quoted verbatim with citation. All cited.
Local to this browser. No cloud, no account, no telemetry.