Eye strain and screen exposure create atricle on it by sabiya bsc optometry 6 th sem
digital eye strain computer vision syndrome
PMID: 35597519
PMID: 37062428
PMID: 39308959
PMID: 36837613
PMID: 40055942
| Symptom | Mechanism |
|---|---|
| Eye strain / fatigue | Accommodative–vergence fatigue |
| Blurred vision (near or distance) | Accommodative spasm or insufficiency |
| Dry, burning, stinging sensation | Reduced blink rate, tear film instability |
| Redness and irritation | Conjunctival desiccation and inflammation |
| Photophobia | Tear film instability, corneal exposure |
| Epiphora (watering) | Reflex tearing from dry surface |
| Diplopia (intermittent) | Decompensating phoria, convergence insufficiency |
| Headache (frontal/periorbital) | Accommodative effort, vergence stress |
| Investigation | Relevance |
|---|---|
| Distance and near visual acuity | Detect uncorrected refractive error |
| Objective/subjective refraction | Identify hyperopia, myopia, astigmatism, presbyopia |
| Cover test (distance and near) | Detect heterophoria/heterotropia |
| Near point of convergence (NPC) | Evaluate convergence insufficiency |
| Accommodative amplitude | Identify insufficiency or spasm |
| AC/A ratio | Accommodation–convergence relationship |
| Slit-lamp examination | Anterior segment, tear film, meibomian glands |
| Tear Break-Up Time (TBUT) | Tear film stability |
| Schirmer's test / TMH | Tear production |
| Meibography | Meibomian gland structure |
| Critical Flicker Fusion Frequency (CFF) | Objective measure of visual fatigue |
| Section | Content |
|---|---|
| Abstract | Definition, scope, and key findings |
| Introduction | History of asthenopia, definition of DES/CVS |
| Epidemiology | 8.2–97% prevalence, COVID impact, high-risk groups |
| Pathophysiology | Accommodation/vergence, dry eye, refractive error, blue light |
| Clinical Features | Ocular + extraocular symptom table |
| Risk Factors | Screen-related + individual factors |
| Diagnosis | CVS-Q, CVSS17, clinical tests table |
| Management | Optical, lubricants, omega-3, 20-20-20 rule, ergonomics |
| Special Populations | Children, contact lens users, presbyopes |
| Future Directions | AI tools, smart glasses, pharmacotherapy |
| References | 10 references including 2 Tier-1 systematic reviews (2022–2025) |
Create atricle on it
mkdir -p /home/daytona/workspace/eye-strain-article && ls /home/daytona/workspace/eye-strain-article/
Create atricle write in atricle format
mkdir -p /home/daytona/workspace/eye-strain-article && node -e "require('docx'); console.log('docx ok')"
~/eye-strain-article/generate.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
AlignmentType, HeadingLevel, BorderStyle, WidthType, ShadingType,
VerticalAlign, PageNumber, Header, Footer, NumberFormat,
UnderlineType, TableOfContents
} = require('docx');
const fs = require('fs');
// ── colour palette ──────────────────────────────────────────────────────────
const DEEP_BLUE = "1B3A6B";
const MID_BLUE = "2563A8";
const LIGHT_BLUE = "D6E4F7";
const ACCENT = "E8F0FD";
const WHITE = "FFFFFF";
const DARK_TEXT = "1A1A2E";
const GREY_TEXT = "555566";
const LINE_GREY = "CCCCDD";
// ── helpers ─────────────────────────────────────────────────────────────────
function hr() {
return new Paragraph({
border: { bottom: { color: LINE_GREY, space: 1, style: BorderStyle.SINGLE, size: 6 } },
spacing: { before: 80, after: 80 },
children: []
});
}
function spacer(pt = 120) {
return new Paragraph({ spacing: { before: 0, after: pt }, children: [] });
}
function heading1(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_1,
spacing: { before: 280, after: 100 },
children: [
new TextRun({
text,
bold: true,
color: WHITE,
size: 28,
font: "Calibri",
allCaps: true,
})
],
shading: { type: ShadingType.SOLID, color: DEEP_BLUE, fill: DEEP_BLUE },
indent: { left: 200, right: 200 },
});
}
function heading2(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_2,
spacing: { before: 220, after: 60 },
children: [
new TextRun({
text,
bold: true,
color: MID_BLUE,
size: 24,
font: "Calibri",
})
],
border: { bottom: { color: MID_BLUE, space: 1, style: BorderStyle.SINGLE, size: 4 } },
});
}
function heading3(text) {
return new Paragraph({
heading: HeadingLevel.HEADING_3,
spacing: { before: 160, after: 40 },
children: [
new TextRun({ text, bold: true, color: DEEP_BLUE, size: 22, font: "Calibri", italics: true })
]
});
}
function body(text, opts = {}) {
return new Paragraph({
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 60, after: 80, line: 320, lineRule: "auto" },
indent: { left: 0 },
children: [
new TextRun({
text,
size: 22,
font: "Calibri",
color: DARK_TEXT,
...opts,
})
]
});
}
function bullet(text, level = 0) {
return new Paragraph({
bullet: { level },
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 40, after: 40, line: 300, lineRule: "auto" },
indent: { left: 360 + level * 360 },
children: [
new TextRun({ text, size: 21, font: "Calibri", color: DARK_TEXT })
]
});
}
function boldLabel(label, rest) {
return new Paragraph({
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 40, after: 40, line: 300, lineRule: "auto" },
indent: { left: 360 },
children: [
new TextRun({ text: label, bold: true, size: 21, font: "Calibri", color: MID_BLUE }),
new TextRun({ text: " " + rest, size: 21, font: "Calibri", color: DARK_TEXT }),
]
});
}
function citation(num, text) {
return new Paragraph({
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 30, after: 30, line: 280, lineRule: "auto" },
indent: { left: 360, hanging: 360 },
children: [
new TextRun({ text: `[${num}] `, bold: true, size: 20, font: "Calibri", color: MID_BLUE }),
new TextRun({ text, size: 20, font: "Calibri", color: DARK_TEXT }),
]
});
}
// ── simple two-column table ──────────────────────────────────────────────────
function makeTable(headers, rows) {
const headerCells = headers.map(h =>
new TableCell({
shading: { type: ShadingType.SOLID, color: DEEP_BLUE, fill: DEEP_BLUE },
verticalAlign: VerticalAlign.CENTER,
children: [new Paragraph({
alignment: AlignmentType.CENTER,
children: [new TextRun({ text: h, bold: true, color: WHITE, size: 20, font: "Calibri" })]
})]
})
);
const dataRows = rows.map((row, ri) =>
new TableRow({
children: row.map((cell, ci) =>
new TableCell({
shading: { type: ShadingType.SOLID, color: ri % 2 === 0 ? ACCENT : WHITE, fill: ri % 2 === 0 ? ACCENT : WHITE },
verticalAlign: VerticalAlign.CENTER,
children: [new Paragraph({
alignment: ci === 0 ? AlignmentType.LEFT : AlignmentType.JUSTIFIED,
children: [new TextRun({ text: cell, size: 19, font: "Calibri", color: DARK_TEXT, bold: ci === 0 })]
})]
})
)
})
);
return new Table({
width: { size: 100, type: WidthType.PERCENTAGE },
borders: {
top: { style: BorderStyle.SINGLE, size: 4, color: MID_BLUE },
bottom: { style: BorderStyle.SINGLE, size: 4, color: MID_BLUE },
left: { style: BorderStyle.SINGLE, size: 4, color: MID_BLUE },
right: { style: BorderStyle.SINGLE, size: 4, color: MID_BLUE },
insideH:{ style: BorderStyle.SINGLE, size: 2, color: LINE_GREY },
insideV:{ style: BorderStyle.SINGLE, size: 2, color: LINE_GREY },
},
rows: [
new TableRow({ tableHeader: true, children: headerCells }),
...dataRows
]
});
}
// ── info box (shaded paragraph) ──────────────────────────────────────────────
function infoBox(text) {
return new Paragraph({
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 80, after: 80, line: 300, lineRule: "auto" },
indent: { left: 300, right: 300 },
shading: { type: ShadingType.SOLID, color: LIGHT_BLUE, fill: LIGHT_BLUE },
border: {
left: { color: MID_BLUE, space: 6, style: BorderStyle.THICK, size: 12 }
},
children: [
new TextRun({ text, size: 21, font: "Calibri", color: DEEP_BLUE, italics: true })
]
});
}
// ── cover page ───────────────────────────────────────────────────────────────
function coverPage() {
return [
spacer(600),
new Paragraph({
alignment: AlignmentType.CENTER,
shading: { type: ShadingType.SOLID, color: DEEP_BLUE, fill: DEEP_BLUE },
spacing: { before: 0, after: 0 },
indent: { left: 400, right: 400 },
children: [new TextRun({ text: " ", size: 8 })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
shading: { type: ShadingType.SOLID, color: DEEP_BLUE, fill: DEEP_BLUE },
spacing: { before: 0, after: 0 },
indent: { left: 400, right: 400 },
children: [
new TextRun({
text: "EYE STRAIN AND SCREEN EXPOSURE",
bold: true, color: WHITE, size: 48, font: "Calibri", allCaps: true,
break: 1,
})
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
shading: { type: ShadingType.SOLID, color: MID_BLUE, fill: MID_BLUE },
spacing: { before: 0, after: 0 },
indent: { left: 400, right: 400 },
children: [
new TextRun({
text: "A Comprehensive Review — Digital Eye Strain & Computer Vision Syndrome",
color: WHITE, size: 24, font: "Calibri", italics: true, break: 1,
}),
new TextRun({ text: " ", size: 8, break: 1 }),
]
}),
spacer(300),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "Submitted By", size: 22, font: "Calibri", color: GREY_TEXT }),
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "SABIYA", bold: true, size: 36, font: "Calibri", color: DEEP_BLUE }),
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "B.Sc. Optometry • 6th Semester", size: 24, font: "Calibri", color: MID_BLUE }),
]
}),
spacer(120),
hr(),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "Department of Optometry", size: 22, font: "Calibri", color: GREY_TEXT }),
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "April 2026", size: 22, font: "Calibri", color: GREY_TEXT }),
]
}),
spacer(400),
];
}
// ── abstract box ─────────────────────────────────────────────────────────────
function abstractSection() {
return [
new Paragraph({
spacing: { before: 200, after: 60 },
shading: { type: ShadingType.SOLID, color: LIGHT_BLUE, fill: LIGHT_BLUE },
border: {
top: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
bottom: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
left: { color: DEEP_BLUE, space: 4, style: BorderStyle.THICK, size: 18 },
right: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
},
indent: { left: 200, right: 200 },
children: [
new TextRun({ text: "ABSTRACT", bold: true, size: 26, color: DEEP_BLUE, font: "Calibri", allCaps: true }),
]
}),
new Paragraph({
alignment: AlignmentType.JUSTIFIED,
spacing: { before: 0, after: 80, line: 320, lineRule: "auto" },
shading: { type: ShadingType.SOLID, color: LIGHT_BLUE, fill: LIGHT_BLUE },
border: {
bottom: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
left: { color: DEEP_BLUE, space: 4, style: BorderStyle.THICK, size: 18 },
right: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
},
indent: { left: 300, right: 200 },
children: [
new TextRun({
text: "Digital eye strain (DES), also known as Computer Vision Syndrome (CVS), has emerged as one of the most prevalent occupational and lifestyle-related ocular conditions of the modern era. With global screen time escalating sharply — further accelerated by the COVID-19 pandemic — up to 69–97% of digital device users report ocular and extraocular symptoms attributable to prolonged screen exposure. This article provides a comprehensive review of the definition, epidemiology, pathophysiology, clinical features, risk factors, diagnostic approaches, and evidence-based management strategies for digital eye strain. Particular attention is given to the optometric aspects including refractive error, accommodative dysfunction, binocular vision anomalies, and ocular surface disease. The relevance of blue-light blocking strategies is critically evaluated in light of current systematic review evidence.",
size: 21, font: "Calibri", color: DARK_TEXT, italics: true,
})
]
}),
new Paragraph({
alignment: AlignmentType.LEFT,
spacing: { before: 0, after: 120 },
shading: { type: ShadingType.SOLID, color: LIGHT_BLUE, fill: LIGHT_BLUE },
border: {
bottom: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
left: { color: DEEP_BLUE, space: 4, style: BorderStyle.THICK, size: 18 },
right: { color: MID_BLUE, space: 2, style: BorderStyle.SINGLE, size: 6 },
},
indent: { left: 300, right: 200 },
children: [
new TextRun({ text: "Keywords: ", bold: true, size: 20, font: "Calibri", color: MID_BLUE }),
new TextRun({ text: "Digital Eye Strain, Computer Vision Syndrome, Asthenopia, Dry Eye, Screen Exposure, Accommodation, Optometry, Blue Light", size: 20, font: "Calibri", color: DARK_TEXT }),
]
}),
];
}
// ── main document build ──────────────────────────────────────────────────────
const children = [
...coverPage(),
// ── page break before article body ──────────────────────────────────────
new Paragraph({ children: [], pageBreakBefore: true }),
// ABSTRACT
...abstractSection(),
spacer(160),
// 1. INTRODUCTION
heading1("1. Introduction"),
body("The proliferation of digital devices — smartphones, tablets, laptops, and desktop monitors — has fundamentally transformed how human beings work, learn, and communicate. In 2025, the average adult spends 8–12 hours daily in front of digital screens. University students and office workers are among the most affected groups, consistently reporting the highest prevalence rates of DES in epidemiological studies."),
body("The COVID-19 pandemic markedly intensified this phenomenon; remote work and online learning dramatically increased screen exposure across virtually all age groups and socioeconomic strata. This 'digital surge' has brought a parallel surge in eye-related complaints, prompting renewed clinical and research attention."),
body("The term asthenopia (Greek: asthenes = weak, ops = eye) has appeared in ophthalmological literature for over a century, describing ocular fatigue arising from visual effort. The digital environment, however, introduces unique visual demands not seen with conventional near work — lower image resolution compared to print, pixel-based contrast, screen glare, intermediate viewing distances, and high cognitive load — collectively explaining why digital tasks generate symptoms at rates exceeding those of equivalent non-digital tasks."),
infoBox("\"Digital eye strain\" is defined as the development or exacerbation of recurrent ocular symptoms and/or signs related specifically to digital device screen viewing. — TFOS Lifestyle Workshop, 2023 (Wolffsohn et al., PMID 37062428)"),
spacer(80),
// 2. EPIDEMIOLOGY
heading1("2. Epidemiology and Prevalence"),
body("The reported prevalence of DES varies widely — from 8.2% to 100% — depending on the population studied, diagnostic criteria used, and the questionnaire instrument applied (Pucker et al., 2024). This extreme range reflects the absence of a universally agreed diagnostic definition until recent years. Key epidemiological findings include:"),
bullet("Global population: A 2025 comprehensive literature review found CVS affects approximately 69% of the global population, influenced by gender, geographic region, and socioeconomic status (Kahal et al., 2025)."),
bullet("Gender: A 2023 meta-analysis demonstrated higher prevalence among females compared to males, consistent with the higher baseline prevalence of dry eye disease in women."),
bullet("Geography: Higher rates are reported in Africa and Asia, reflecting differences in device usage patterns, workplace ergonomics, and access to corrective eyewear."),
bullet("Age and occupation: University students report the highest prevalence due to extended academic screen time combined with inadequate ergonomic practices. IT professionals spending >6 hours/day on computers are also at substantially elevated risk."),
bullet("Post-COVID era: Remote work and online education mandates produced a measurable spike in DES prevalence and severity globally from 2020 onwards."),
spacer(80),
// 3. PATHOPHYSIOLOGY
heading1("3. Pathophysiology"),
body("The pathophysiology of DES is multifactorial, encompassing three primary domains: accommodative–vergence dysfunction, ocular surface disease, and environmental–ergonomic factors."),
heading2("3.1 Accommodative and Vergence Dysfunction"),
body("The eye maintains focus at a fixed near distance through accommodation — contraction of the ciliary muscle increases lens curvature to sharpen a near image. During prolonged screen use, the ciliary muscle remains under sustained tonic contraction at a fixed intermediate distance, leading to progressive ciliary muscle fatigue. This manifests as:"),
boldLabel("Accommodative spasm:", "The ciliary muscle becomes unable to fully relax, resulting in blurred distance vision after prolonged near work."),
boldLabel("Accommodative insufficiency:", "Reduced amplitude or lag of accommodation, causing near blur and eye strain."),
boldLabel("Convergence insufficiency:", "Inability to maintain adequate convergence at near distances, producing asthenopia or intermittent diplopia."),
body("Decompensating heterophorias are particularly significant: when fusion is insufficient to control the phoria, binocular discomfort (asthenopia) or diplopia results. The Wills Eye Manual identifies uncorrected refractive error, phoria/tropia, convergence insufficiency, and accommodative spasm as direct causes of asthenopia — precisely the constellation encountered in screen users."),
body("Digital screens place the viewing distance at an 'intermediate' range (50–70 cm) that may not be optimally corrected by a standard single-vision or reading prescription, particularly in presbyopic patients. Controlled trials have shown that multifocal lenses do not significantly outperform single-vision lenses for reducing visual fatigue in CVS (Singh et al., 2022)."),
heading2("3.2 Ocular Surface Disease and Reduced Blink Rate"),
body("One of the most well-established mechanisms is the reduction in spontaneous blink rate. Under normal conditions, humans blink 15–20 times per minute; during concentrated screen work, this falls to 3–7 blinks per minute — a reduction of up to 66%. Consequences include:"),
bullet("Increased tear film evaporation from the exposed ocular surface."),
bullet("Tear film instability — shortened tear break-up time (TBUT)."),
bullet("Corneal and conjunctival desiccation — increased osmolarity, epithelial disruption, and inflammatory cascade."),
bullet("Meibomian gland dysfunction (MGD) — chronic incomplete blinking impairs gland expression, worsening the lipid layer deficiency of the tear film."),
body("These changes produce or exacerbate dry eye disease. The TFOS Lifestyle Workshop (2023) identified reduced blink rate and blink completeness as primary mechanisms of ocular surface disease exacerbation in DES. Additionally, upward gaze (when the monitor is positioned above primary gaze) increases exposed ocular surface area, accelerating evaporation — providing clear physiological rationale for lowering the monitor below eye level."),
heading2("3.3 Refractive Error"),
body("Uncorrected or undercorrected refractive error substantially amplifies the accommodative load during screen use:"),
boldLabel("Myopia:", "Myopes who remove spectacles for screen work may experience reduced visual comfort; those who retain them work within their far point but still require accommodation for the intermediate screen distance."),
boldLabel("Hyperopia:", "Even low degrees of uncorrected hyperopia demand continuous accommodative effort at all distances, dramatically worsening near-task fatigue."),
boldLabel("Astigmatism:", "Reduces image clarity and forces repeated accommodative attempts to sharpen the image, directly producing fatigue."),
boldLabel("Presbyopia:", "The most clinically critical group; inadequate near or intermediate correction is the most common correctable cause of CVS in patients over 40."),
heading2("3.4 Blue Light and Circadian Disruption"),
body("Digital screens emit visible short-wavelength blue light (380–500 nm), particularly the 415–455 nm high-energy visible (HEV) range. Two primary concerns are relevant:"),
boldLabel("Retinal phototoxicity:", "Animal studies at high irradiance demonstrate oxidative photoreceptor damage. At typical human screen exposure levels, direct retinal toxicity remains unproven in vivo. Clinical anxiety about this mechanism exceeds the current evidence base."),
boldLabel("Circadian rhythm disruption:", "Blue light strongly suppresses melatonin secretion via intrinsically photosensitive retinal ganglion cells (ipRGCs) containing melanopsin. Evening screen exposure delays the circadian clock, impairs sleep quality, and produces indirect effects on next-day visual performance and well-being."),
body("Importantly, both Singh et al. (2022) and the TFOS Lifestyle Workshop (2023) concluded that current evidence does NOT support blue-light blocking spectacles as an effective treatment for visual fatigue symptoms in DES. Their role may be limited to evening use for circadian protection."),
spacer(80),
// 4. CLINICAL FEATURES
heading1("4. Clinical Features"),
body("DES produces a broad spectrum of ocular and extraocular symptoms. The most commonly reported include headache, eye strain, eye redness, eye itching, tearing, photophobia, burning sensation, blurred vision, neck and shoulder pain, and eye dryness (Pucker et al., 2024)."),
spacer(60),
makeTable(
["Symptom", "Primary Mechanism"],
[
["Eye strain / fatigue", "Ciliary muscle fatigue from sustained accommodation"],
["Blurred vision (near or distance)", "Accommodative spasm or insufficiency"],
["Dry, burning, stinging eyes", "Reduced blink rate → tear film instability"],
["Redness and irritation", "Conjunctival desiccation and inflammation"],
["Photophobia", "Corneal exposure and tear film instability"],
["Epiphora (watering eyes)", "Reflex tearing from dry ocular surface"],
["Intermittent diplopia", "Decompensating phoria, convergence insufficiency"],
["Frontal / periorbital headache", "Accommodative effort and vergence stress"],
["Neck and shoulder pain", "Poor ergonomic posture during screen use"],
["Sleep disturbance", "Blue-light mediated melatonin suppression"],
]
),
spacer(120),
// 5. RISK FACTORS
heading1("5. Risk Factors"),
heading2("5.1 Screen-Related Factors"),
bullet("Duration: Risk increases substantially beyond 2 hours of continuous use; >6 hours/day is strongly associated with moderate-to-severe DES."),
bullet("Screen distance and position: Screens placed too close (<40 cm) or at inappropriate heights worsen accommodative and ergonomic strain."),
bullet("Luminance and contrast: Excessive brightness, poor contrast, and screen glare increase visual effort."),
bullet("Pixel density and refresh rate: Low refresh rates (60 Hz) may produce subtle flicker; low resolution increases the vergence effort needed for character recognition."),
bullet("Anti-reflection coating: Absence of AR coating on spectacles increases reflective screen glare."),
heading2("5.2 Individual Patient Factors"),
bullet("Uncorrected or undercorrected refractive error"),
bullet("Pre-existing dry eye disease or meibomian gland dysfunction"),
bullet("Accommodative insufficiency or convergence insufficiency"),
bullet("Contact lens wear (increases evaporative dry eye risk)"),
bullet("Female sex (higher DES and dry eye susceptibility)"),
bullet("Age — presbyopes have reduced accommodative reserve; children have high accommodation but increasing screen time"),
bullet("Low-humidity environments (air-conditioned offices: relative humidity often <30%)"),
spacer(80),
// 6. DIAGNOSIS
heading1("6. Diagnosis and Clinical Assessment"),
body("A thorough optometric evaluation is the cornerstone of diagnosis. The two most validated questionnaires are the CVS-Q (Computer Vision Syndrome Questionnaire) and the CVSS17 (Computer Vision Symptom Scale), the latter a 17-item scale with strong reliability and validity (Pucker et al., 2024)."),
spacer(60),
makeTable(
["Clinical Test", "Relevance to DES"],
[
["Distance and near visual acuity", "Detect uncorrected / undercorrected refractive error"],
["Objective & subjective refraction", "Identify hyperopia, myopia, astigmatism, presbyopia"],
["Cover test (distance and near)", "Detect heterophoria / heterotropia"],
["Near point of convergence (NPC)", "Evaluate convergence insufficiency"],
["Accommodative amplitude", "Identify insufficiency or spasm"],
["AC/A ratio", "Accommodation–convergence relationship"],
["Slit-lamp examination", "Anterior segment, tear film, meibomian glands"],
["Tear Break-Up Time (TBUT)", "Tear film stability (normal: >10 seconds)"],
["Schirmer's test / TMHI", "Aqueous tear production"],
["Meibography", "Meibomian gland morphology"],
["Critical Flicker Fusion Frequency (CFF)", "Objective measure of visual fatigue"],
]
),
spacer(120),
// 7. MANAGEMENT
heading1("7. Management"),
body("Management of DES is multimodal, targeting the specific underlying mechanism(s) identified during assessment. No single intervention is universally effective; a tailored combination approach is required."),
heading2("7.1 Optical Correction"),
bullet("Prescribe full refractive correction for the appropriate working distances — this is the most fundamental and impactful intervention."),
bullet("Occupational progressive addition lenses (PALs) or office lenses optimised for intermediate-near working distances in presbyopes."),
bullet("Anti-reflection (AR) coated lenses reduce screen glare significantly and are recommended for all screen workers."),
bullet("Blue-light blocking filters: current systematic review evidence shows low certainty of benefit for visual fatigue (Singh et al., 2022; Wolffsohn et al., 2023). Not recommended as a primary DES intervention."),
heading2("7.2 Ocular Surface Management"),
bullet("Artificial tears: preservative-free lubricating drops; high-molecular-weight agents or mucin analogues preferred for DES-related dry eye."),
bullet("Blinking exercises: conscious complete blink training to restore normal blink rate and completeness during screen use."),
bullet("Warm compress and humidity goggles: identified as promising strategies in the TFOS 2023 systematic review."),
bullet("Ambient humidifiers: raising environmental relative humidity from <40% to ≥50% reduces tear evaporation."),
bullet("Meibomian gland therapy: warm compresses, lid hygiene, and gland expression in cases of significant MGD."),
heading2("7.3 Nutritional Supplementation"),
body("Singh et al. (2022) meta-analysed RCTs on nutritional interventions:"),
boldLabel("Omega-3 fatty acids:", "Significant improvement in dry eye symptoms in symptomatic computer users across 2 pooled RCTs (mean difference −3.36 on 18-unit scale; p<0.00001). Currently the most evidence-supported oral intervention."),
boldLabel("Carotenoids (lutein/zeaxanthin):", "Improved critical flicker-fusion frequency in 2 pooled RCTs. Clinical significance remains under investigation."),
boldLabel("Berry extracts:", "No statistically significant improvement in visual fatigue demonstrated; not recommended as primary therapy."),
heading2("7.4 The 20-20-20 Rule"),
infoBox("Every 20 minutes of screen use → look at an object 20 feet (6 metres) away → for at least 20 seconds. This breaks ciliary muscle spasm and allows vergence relaxation. Although large RCT evidence is limited, the physiological rationale is strong."),
heading2("7.5 Ergonomic Modifications"),
spacer(60),
makeTable(
["Ergonomic Factor", "Recommended Practice"],
[
["Screen distance", "50–70 cm (adjust for screen size and font size)"],
["Screen height", "Top of screen at or slightly below eye level"],
["Screen luminance", "Match to ambient room lighting; avoid dark-room viewing"],
["Anti-glare", "Matte screen covers; adjust room lighting to eliminate reflections"],
["Font and contrast", "Increase font size as needed to reduce vergence effort"],
["Work breaks", "5–10 minute break every 60 minutes of screen use"],
["Posture", "Ergonomic chair, neutral spine, supported wrists"],
["Evening screen use", "Use night/warm-tone mode ≥1–2 hours before sleep"],
]
),
spacer(120),
// 8. SPECIAL POPULATIONS
heading1("8. Special Populations"),
heading2("8.1 Children and Adolescents"),
body("Children have large accommodative amplitudes and may tolerate high visual demands without overt asthenopia, masking underlying binocular vision anomalies. The critical concern in this group is myopia progression, which is accelerated by near work and reduced outdoor time. Increased outdoor time (minimum 2 hours/day) is the best evidence-based strategy for myopia control alongside optical interventions (orthokeratology, low-dose atropine 0.01–0.05%, myopia-controlling spectacle designs)."),
heading2("8.2 Contact Lens Wearers"),
body("Contact lens wear significantly worsens DES-related dry eye symptoms, as lenses disrupt the lipid layer of the tear film and increase evaporation. Preferred strategies include rewetting drops, switching to daily disposable silicone hydrogel lenses, and reducing wearing times during screen-intensive work sessions."),
heading2("8.3 Presbyopes"),
body("This group is most vulnerable to CVS due to reduced accommodative reserve. A dedicated intermediate-zone correction — via progressive lenses, bifocals with intermediate segment, or a separate 'computer pair' — is often the single most impactful clinical intervention. Many presbyopic patients presenting with CVS have never been prescribed an occupational lens."),
spacer(80),
// 9. FUTURE DIRECTIONS
heading1("9. Future Directions"),
bullet("Smart glasses with near-eye tracking: real-time monitoring of blink rate and automatic reminders to blink or take breaks."),
bullet("AI-based ergonomic assessment tools: real-time analysis of posture, screen distance, and gaze angle with corrective prompts — showing early promise in professional settings (Kahal et al., 2025)."),
bullet("Standardised diagnostic criteria: the TFOS 2023 consensus provides a foundation; further validation of DES-specific questionnaires and objective biomarkers (TBUT under actual screen conditions, blink rate monitoring) is needed."),
bullet("Telehealth screening: population-level digital screening for DES risk, particularly for students and remote workers who may not present to primary eye care."),
bullet("Pharmacological advances: secretagogues (diquafosol), cyclosporine A, and lifitegrast for DES-related dry eye — with DES-specific RCTs ongoing."),
bullet("Blue light research: larger, higher-quality RCTs required before any definitive conclusions on retinal health effects at typical screen exposure levels can be drawn."),
spacer(80),
// 10. CONCLUSION
heading1("10. Conclusion"),
body("Digital eye strain is a highly prevalent, multifactorial condition at the intersection of optometry, ophthalmology, occupational health, and behavioural medicine. The optometrist is uniquely positioned as the frontline professional for both its detection and management. A comprehensive patient evaluation — addressing refractive error, binocular vision, ocular surface health, and ergonomic factors — is required for effective care."),
body("Despite widespread marketing of blue-light blocking products, current systematic review evidence does not support their use as a primary DES treatment. Omega-3 supplementation, preservative-free ocular lubricants, blinking exercises, and ergonomic corrections constitute the most evidence-supported interventions. Full refractive correction remains the single most impactful prescription-based intervention."),
body("With the continuing rise of screen dependency in modern society, digital eye strain will only grow in clinical importance. It represents a core competency for every practising optometrist and a significant public health challenge demanding continued research investment, clinical education, and population-level awareness."),
spacer(80),
hr(),
// REFERENCES
heading1("References"),
citation(1, "Wolffsohn JS, Lingham G, Downie LE, et al. TFOS Lifestyle: Impact of the digital environment on the ocular surface. Ocul Surf. 2023;28:213–252. PMID: 37062428."),
citation(2, "Singh S, McGuinness MB, Anderson AJ, Downie LE. Interventions for the Management of Computer Vision Syndrome: A Systematic Review and Meta-analysis. Ophthalmology. 2022;129(10):1192–1215. PMID: 35597519."),
citation(3, "Pucker AD, Kerr AM, Sanderson J, Lievens C. Digital Eye Strain: Updated Perspectives. Clin Optom (Auckl). 2024;16:225–233. PMID: 39308959."),
citation(4, "Pavel IA, Bogdanici CM, Donica VC, et al. Computer Vision Syndrome: An Ophthalmic Pathology of the Modern Era. Medicina (Kaunas). 2023;59(2):412. PMID: 36837613."),
citation(5, "Kahal F, Al Darra A, Torbey A. Computer vision syndrome: a comprehensive literature review. Future Sci OA. 2025. PMID: 40055942."),
citation(6, "Mylona I, Glynatsis MN, Floros GD. Spotlight on Digital Eye Strain. Clin Optom (Auckl). 2023. PMID: 36875935."),
citation(7, "Erdinest N, Berkow D. Computer Vision Syndrome. Harefuah. 2021;160(6):381–386. PMID: 34160157."),
citation(8, "Auffret E, Gomart G, Bourcier T. Digital eye strain: symptoms, prevalence, pathophysiology, and management. J Fr Ophtalmol. 2021 Dec. PMID: 34657757."),
citation(9, "Kanski's Clinical Ophthalmology: A Systematic Approach, 10th Edition. Definitions: Heterophoria and Asthenopia."),
citation(10, "The Wills Eye Manual: Office and Emergency Room Diagnosis and Treatment of Eye Disease. Asthenopia: Ocular Causes. Block 1."),
citation(11, "American Optometric Association. Computer Vision Syndrome (CVS). AOA Clinical Guidance."),
spacer(200),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "— End of Article —", italics: true, color: GREY_TEXT, size: 20, font: "Calibri" })
]
}),
];
// ── assemble document ────────────────────────────────────────────────────────
const doc = new Document({
creator: "Sabiya, B.Sc. Optometry 6th Sem",
title: "Eye Strain and Screen Exposure",
description: "A comprehensive review of digital eye strain and computer vision syndrome",
styles: {
default: {
document: {
run: { font: "Calibri", size: 22, color: DARK_TEXT }
},
heading1: {
run: { font: "Calibri", bold: true, color: WHITE, size: 28 },
},
heading2: {
run: { font: "Calibri", bold: true, color: MID_BLUE, size: 24 },
},
heading3: {
run: { font: "Calibri", bold: true, italics: true, color: DEEP_BLUE, size: 22 },
},
}
},
sections: [
{
properties: {
page: {
margin: { top: 1080, bottom: 1080, left: 1080, right: 1080 },
size: { width: 12240, height: 15840 },
},
},
headers: {
default: new Header({
children: [
new Paragraph({
alignment: AlignmentType.RIGHT,
border: { bottom: { color: MID_BLUE, space: 1, style: BorderStyle.SINGLE, size: 4 } },
children: [
new TextRun({ text: "Eye Strain and Screen Exposure | Sabiya | B.Sc. Optometry — 6th Semester", size: 18, font: "Calibri", color: GREY_TEXT }),
]
})
]
})
},
footers: {
default: new Footer({
children: [
new Paragraph({
alignment: AlignmentType.CENTER,
border: { top: { color: MID_BLUE, space: 1, style: BorderStyle.SINGLE, size: 4 } },
children: [
new TextRun({ text: "Page ", size: 18, font: "Calibri", color: GREY_TEXT }),
new TextRun({ children: [PageNumber.CURRENT], size: 18, font: "Calibri", color: GREY_TEXT }),
new TextRun({ text: " | Department of Optometry | April 2026", size: 18, font: "Calibri", color: GREY_TEXT }),
]
})
]
})
},
children,
}
]
});
const OUT = "/home/daytona/workspace/eye-strain-article/Eye_Strain_Screen_Exposure_Sabiya.docx";
Packer.toBuffer(doc).then(buf => {
fs.writeFileSync(OUT, buf);
console.log("✅ Written:", OUT);
}).catch(err => {
console.error("❌ Error:", err);
process.exit(1);
});
cd /home/daytona/workspace/eye-strain-article && node generate.js 2>&1
python /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/eye-strain-article/Eye_Strain_Screen_Exposure_Sabiya.docx 2>&1
# Validate by unzipping and checking the XML is well-formed cd /tmp && cp /home/daytona/workspace/eye-strain-article/Eye_Strain_Screen_Exposure_Sabiya.docx test.zip && unzip -q test.zip -d test_docx && python3 -c " import xml.etree.ElementTree as ET, os ok = 0 for root, dirs, files in os.walk('/tmp/test_docx'): for f in files: if f.endswith('.xml') or f.endswith('.rels'): try: ET.parse(os.path.join(root, f)) ok += 1 except Exception as e: print('FAIL:', f, e) print(f'All {ok} XML files parsed OK') " && ls -lh /home/daytona/workspace/eye-strain-article/Eye_Strain_Screen_Exposure_Sabiya.docx
Eye Strain Screen Exposure Sabiya
Word Document · DOCX
| Section | Content |
|---|---|
| Cover Page | Title banner, Author (Sabiya), B.Sc. Optometry 6th Semester, April 2026 |
| Abstract | Styled box with keywords |
| 1. Introduction | History of asthenopia, TFOS definition quote box |
| 2. Epidemiology | Global 69–97% prevalence, COVID impact, gender, geography |
| 3. Pathophysiology | Accommodation/vergence, dry eye & blink rate, refractive error, blue light |
| 4. Clinical Features | Formatted table — symptom + mechanism |
| 5. Risk Factors | Screen-related + individual patient factors |
| 6. Diagnosis | CVS-Q, CVSS17, formatted clinical test table |
| 7. Management | Optical correction, ocular surface, omega-3, 20-20-20 rule, ergonomics table |
| 8. Special Populations | Children, contact lens wearers, presbyopes |
| 9. Future Directions | AI tools, smart glasses, pharmacotherapy |
| 10. Conclusion | Evidence-based summary |
| References | 11 numbered citations (includes 2 Tier-1 systematic reviews from 2022–2023) |