-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedibles.html
More file actions
136 lines (126 loc) · 5.98 KB
/
Copy pathedibles.html
File metadata and controls
136 lines (126 loc) · 5.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Calculate edible batch THC per serving, servings possible at a target dose, and whether a batch is over or under target potency.">
<title>Edible Batch THC Serving Calculator | 420Calc</title>
<link rel="canonical" href="https://420calc.com/edibles.html">
<meta property="og:title" content="Edible Batch THC Serving Calculator | 420Calc">
<meta property="og:description" content="Calculate edible batch THC per serving, servings possible at a target dose, and whether a batch is over or under target potency.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://420calc.com/edibles.html">
<meta property="og:image" content="https://420calc.com/assets/logo.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Edible Batch THC Serving Calculator | 420Calc">
<meta name="twitter:description" content="Calculate edible batch THC per serving, servings possible at a target dose, and whether a batch is over or under target potency.">
<meta name="twitter:image" content="https://420calc.com/assets/logo.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="css/styles.css">
</head>
<body data-page="edibles">
<header class="site-header">
<nav class="nav" aria-label="Primary navigation">
<a href="index.html" class="nav-brand">
<img src="img/logo.png" alt="420Calc logo" class="nav-logo">
<span>420Calc</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="bulk.html">Bulk</a>
<a href="ipr.html">Infused</a>
<a href="margin.html">Margin</a>
<a href="edibles.html" aria-current="page">Edibles</a>
<a href="units.html">Units</a>
<a href="spend.html">Spend</a>
<a href="dab.html">Dab</a>
<a href="rating.html">Rating</a>
</div>
</nav>
</header>
<main class="page">
<section class="page-title" aria-labelledby="page-title">
<h1 id="page-title">Edible Batch Calculator</h1>
<p>Estimate serving strength and how many servings a batch can produce at a target THC dose.</p>
</section>
<section class="calculator-shell" aria-label="Edible batch calculator">
<div class="panel">
<div class="panel-header">
<h2>Inputs</h2>
</div>
<form class="calc-form" id="edibles-form">
<div class="field">
<label for="edibles-total-thc">Total THC</label>
<div class="input-wrap suffix">
<input id="edibles-total-thc" name="edibles-total-thc" type="number" inputmode="decimal" min="0" step="0.1" value="1000">
<span class="input-suffix" aria-hidden="true">mg</span>
</div>
</div>
<div class="field">
<label for="edibles-servings">Number of servings</label>
<input id="edibles-servings" name="edibles-servings" type="number" inputmode="numeric" min="0" step="1" value="100">
</div>
<div class="field">
<label for="edibles-target">Target mg per serving</label>
<div class="input-wrap suffix">
<input id="edibles-target" name="edibles-target" type="number" inputmode="decimal" min="0" step="0.1" value="10">
<span class="input-suffix" aria-hidden="true">mg</span>
</div>
</div>
<div class="form-actions">
<button class="button secondary" id="reset-results" type="button">Reset</button>
<button class="button" id="copy-results" type="button">Copy Results</button>
</div>
</form>
</div>
<div class="panel" id="edibles-results">
<div class="panel-header">
<h2>Results</h2>
</div>
<div class="results">
<div class="result-hero" data-copy-row>
<span data-label>Over/under target note</span>
<strong id="edibles-note" class="rating" data-value>On target</strong>
<p>Compares calculated serving strength against the target dose.</p>
</div>
<div class="result-grid">
<div class="result-item" data-copy-row>
<span data-label>mg per serving</span>
<strong id="edibles-mg-serving" data-value>0mg</strong>
</div>
<div class="result-item" data-copy-row>
<span data-label>Total servings possible at target</span>
<strong id="edibles-servings-target" data-value>0.0</strong>
</div>
</div>
</div>
</div>
</section>
<details class="formula-panel">
<summary>Formula & Assumptions</summary>
<div class="formula-content">
<p>This calculator assumes the entered total THC is already the usable batch THC after any decarb, infusion, or processing losses.</p>
<ul>
<li>Mg per serving = total THC mg / number of servings</li>
<li>Total servings possible at target = total THC mg / target mg per serving</li>
<li>Over or under target = calculated mg per serving - target mg per serving</li>
</ul>
</div>
</details>
</main>
<footer class="site-footer">
<div class="footer-inner">
<span>© 2007-2026 Washed Limited Co.</span>
<span>420Calc edible batch desk.</span>
<span class="disclaimer">Calculations are estimates only and are not legal, tax, regulatory, labeling, or compliance advice.</span>
</div>
</footer>
<script src="js/utils.js"></script>
<script src="js/calculators.js"></script>
<script src="js/app.js"></script>
</body>
</html>