ForMatter/Materials/stone/Onyx (Translucent Architectural Onyx)
mat_onyx_translucent

Onyx (Translucent Architectural Onyx)

sedimentary chemical stone, banded calcium carbonate (calcite) — distinct from agate-onyx (chalcedony) · calcite onyx, Mexican onyx, Iranian onyx, alabaster (loose synonym), honey onyx

The translucent banded stone of Mies van der Rohe's Villa Tugendhat onyx wall, of every backlit hotel-bar feature wall, of the Ron Arad and Tom Dixon decorative pieces. Architectural onyx is a calcite stone (not the agate-onyx of jewelry, which is silica) precipitated from carbonate-rich water in caves — the same process that builds stalactites, but laid down in horizontal beds. The result is a stone with parallel translucent bands of cream, honey, white, and amber that glows when lit from behind. Backlit onyx panels are the architectural canon since the early 20th century; the Tugendhat wall (1930) is the reference installation. Buy from Antolini, Stone Source, or specialty backlit-stone vendors that pre-laminate onyx slabs to acrylic carriers for safe handling at thin section.

Sedimentary chemical rock, calcium carbonate (calcite, locally aragonite) precipitated from cool ground water in caves and karst environments — the lithified version of stalactite / stalagmite formations, laid down in parallel bands. Density 2700 kg/m³. Mohs hardness 3 (the calcite hardness — soft enough to scratch with a steel knife). Compressive strength 60–95 MPa. Translucency is the key architectural property: a 20mm slab transmits 5–15 percent of incident light, enough for backlit panels to read as glowing. Banding is parallel and tight; pattern variation across a single slab is significant, which is why onyx slabs are typically book-matched (sequential slabs flipped to mirror the pattern). Thinner sections (10–15 mm) are common for backlit installations, often laminated to a clear acrylic / glass carrier for handling and shipping safety. Cuts cleanly with wet diamond saw; carves with calcite-tier ease; takes a high polish on the matrix. Reactive to acid like all calcite stones — citrus juice etches a visible mark within minutes.

mechanical

  • density_kg_m32700
  • mohs_hardness3
  • compressive_strength_mpa80
  • translucency_percent_at_20mm10
source: Antolini technical data; Stone Source onyx product specifications

Sustainability

  • embodied carbon kg co2e per kg0.3
  • sourceEditorial estimate from ICE / Granta CES EduPack natural-stone class data, cradle-to-gate. Higher than slate / sandstone because of longer transport — major sources are Iran, Mexico, Pakistan, Turkey.
  • recyclabilitymoderate — the laminated backlit panels are difficult to separate at end of life; standalone slabs reuseable
  • biodegradableFalse
  • certificationsEPD available from Antolini for some onyx grades
  • localityIran (the largest premium producer — colors include white, green, honey, multicolor), Mexico (the Tehuacán region — historic Mexican onyx), Pakistan, Turkey, Italy; designer-quantity samples via Antolini, Stone Source, ABC Stone, M S International
visual
the defining property — parallel translucent bands of cream / honey / amber / white / occasionally green or pink; backlit, the bands read as glowing strata; front-lit, as a luxury striated marble; varies enormously slab-to-slab, which is the curatorial work of selecting slabs
tactile
smooth and slightly cool to the touch on polished face; cut edges sharp until eased; lighter in the hand than expected (the porosity contributes)
weight perception
moderate; lighter per volume than marble or granite
acoustic
a soft tap; the calcite-and-pore structure damps sound character

PBR starter values

finish · transparent — open for table, JSON, host snippets, downloads

Principled BSDF defaults derived from the sphere transparent finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →

# finish:                   transparent
albedo                      #e0c890
metallic                    0.00
roughness                   0.05
ior                         1.50
transmission                1.00
clearcoat                   0.00
sheen                       0.00
anisotropic                 0.00
thickness                   1.00
attenuation_distance        0.60
copy as JSON
{
  "albedo": "#e0c890",
  "metallic": 0.0,
  "roughness": 0.05,
  "ior": 1.5,
  "transmission": 1.0,
  "clearcoat": 0.0,
  "sheen": 0.0,
  "anisotropic": 0.0,
  "thickness": 1.0,
  "attenuation_distance": 0.6
}
Blender 4.x Python
# Blender 4.x — Principled BSDF
# Onyx (Translucent Architectural Onyx) · finish: transparent
import bpy
mat = bpy.data.materials.new(name="mat_onyx_translucent")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.7454, 0.5776, 0.2789, 1.0)
bsdf.inputs["Metallic"].default_value           = 0.000
bsdf.inputs["Roughness"].default_value          = 0.050
bsdf.inputs["IOR"].default_value                = 1.500
bsdf.inputs["Transmission Weight"].default_value = 1.000
bsdf.inputs["Coat Weight"].default_value        = 0.000
bsdf.inputs["Sheen Weight"].default_value       = 0.000
bsdf.inputs["Anisotropic"].default_value        = 0.000
KeyShot Python (lux)
# KeyShot 11+ — lux Python API, Generic material
# Onyx (Translucent Architectural Onyx) · finish: transparent
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_onyx_translucent", materialType="Generic")
mat.setProperty("diffuse",      (224, 200, 144))   # 8-bit sRGB
mat.setProperty("metallic",     0.000)
mat.setProperty("roughness",    0.050)
mat.setProperty("indexOfRefraction", 1.500)
mat.setProperty("transparency", 1.000)
mat.setProperty("coatingWeight", 0.000)
Substance pbrMetalRough
{
  "_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
  "_about": "Onyx (Translucent Architectural Onyx) \u00b7 finish: transparent",
  "baseColor": {
    "r": 0.7454,
    "g": 0.5776,
    "b": 0.2789
  },
  "metallic": 0.0,
  "roughness": 0.05,
  "ior": 1.5,
  "opacity": 0.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."
}
glTF 2.0 Metallic-Roughness
{
  "asset": {
    "version": "2.0",
    "generator": "ForMatter"
  },
  "materials": [
    {
      "name": "mat_onyx_translucent",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.7454,
          0.5776,
          0.2789,
          1.0
        ],
        "metallicFactor": 0.0,
        "roughnessFactor": 0.05
      },
      "extensions": {
        "KHR_materials_transmission": {
          "transmissionFactor": 1.0
        }
      }
    }
  ]
}
USD Preview Surface
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Onyx (Translucent Architectural Onyx) · finish: transparent
def Material "mat_onyx_translucent" {
    token outputs:surface.connect = </mat_onyx_translucent/PreviewSurface.outputs:surface>

    def Shader "PreviewSurface" {
        uniform token info:id = "UsdPreviewSurface"
        color3f inputs:diffuseColor = (0.7454, 0.5776, 0.2789)
        float   inputs:metallic     = 0.000
        float   inputs:roughness    = 0.050
        float   inputs:ior          = 1.500
        float   inputs:opacity      = 0.000
        float   inputs:clearcoat    = 0.000
        token   outputs:surface
    }
}
↓ download glTF material
Finishes that suit this material

Second life

repairabilitymoderate — onyx accepts honing; chip-repair with epoxy.
recyclabilitymoderate — premium decorative stone with secondary market.
disposal pathaggregate; salvage for translucent backlit installations.
typical longevity500 years (typical)
failure modes
  • acid-etching (calcium-carbonate sensitivity)
  • fracture along banding
  • discoloration from oils

Marble Institute of America onyx care guide.

Further reading