TOML
Coffee Beverage Varieties - TOML
Coffee beverage varieties offer diverse options based on extraction methods, milk content, and mixing ratios. Italian-style drinks based on espresso (caffè latte, cappuccino, americano, etc.) and drip coffee-based drinks (café au lait, American coffee, etc.) are representative examples. Understanding the characteristic flavors and serving methods of each variety allows for a richer coffee experience.
coffee
espresso
caffè latte
cappuccino
americano
café au lait
beverage
[[items]]
code = "01"
slug = "espresso"
name = "Espresso"
description = "A concentrated coffee brewed under high pressure in a short time."
base = "Espresso beans (dark roast, extra fine grind)"
milkContent = false
origin = "Italy"
ratio = ""
[[items]]
code = "02"
slug = "caffe-latte"
name = "Caffè Latte"
description = "A smooth coffee made by adding steamed milk to espresso."
base = "Espresso"
milkContent = true
origin = "Italy"
ratio = "Espresso:Milk = 1:4"
[[items]]
code = "03"
slug = "cappuccino"
name = "Cappuccino"
description = "Coffee made with espresso, steamed milk, and foam milk."
base = "Espresso"
milkContent = true
origin = "Italy"
ratio = "Espresso:Steamed Milk:Foam Milk = 1:1:1"
[[items]]
code = "04"
slug = "americano"
name = "Americano"
description = "Coffee made by diluting espresso with hot water."
base = "Espresso"
milkContent = false
origin = "Italy (created by American soldiers)"
ratio = "Espresso:Hot Water = 1:3"
[[items]]
code = "05"
slug = "cafe-au-lait"
name = "Café au Lait"
description = "A French-origin coffee made by adding milk 1:1 to drip coffee."
base = "Drip Coffee"
milkContent = true
origin = "France"
ratio = "Coffee:Milk = 1:1"
[[items]]
code = "06"
slug = "caffe-mocha"
name = "Caffè Mocha"
description = "A dessert-like coffee made with espresso, chocolate, and milk."
base = "Espresso"
milkContent = true
origin = "United States"
ratio = ""
[[items]]
code = "07"
slug = "espresso-macchiato"
name = "Espresso Macchiato"
description = "Espresso with a small amount of frothed milk added."
base = "Espresso"
milkContent = true
origin = "Italy"
ratio = ""
[[items]]
code = "08"
slug = "flat-white"
name = "Flat White"
description = "An Australian-origin coffee made with espresso and finely textured steamed milk."
base = "Espresso"
milkContent = true
origin = "Australia/New Zealand"
ratio = ""
[[items]]
code = "09"
slug = "american-coffee"
name = "American Coffee"
description = "A light and refreshing coffee made with lightly roasted coarsely ground beans."
base = "Drip Coffee (light roast, coarse grind)"
milkContent = false
origin = "Japan (Japanese-English term)"
ratio = ""
[[items]]
code = "10"
slug = "drip-coffee"
name = "Drip Coffee"
description = "Standard coffee brewed by pouring hot water through a filter."
base = "Drip extraction"
milkContent = false
origin = "Germany (invented by Melitta)"
ratio = ""