From 1b9be2d20865ec40dc13858dbd4c95d54b306751 Mon Sep 17 00:00:00 2001 From: "A.C.E07" Date: Mon, 16 Feb 2026 00:09:27 +0800 Subject: [PATCH 1/4] PyQASM logo - Added SVG light and dark mode versions of PyQASM logo. - Added dynamic logo mode to README.md based on color palette used on user-side. --- README.md | 5 ++++- docs/_static/pyqasm-dark-no-text.svg | 1 + docs/_static/pyqasm-dark.svg | 1 + docs/_static/pyqasm-light-no-text.svg | 1 + docs/_static/pyqasm-light.svg | 1 + 5 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 docs/_static/pyqasm-dark-no-text.svg create mode 100644 docs/_static/pyqasm-dark.svg create mode 100644 docs/_static/pyqasm-light-no-text.svg create mode 100644 docs/_static/pyqasm-light.svg diff --git a/README.md b/README.md index 9ea5235b..c39283e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # pyqasm - +

+ PyQASM Logo (Light Mode) + PyQASM Logo (Dark Mode) +

[![CI](https://github.com/qBraid/pyqasm/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/qBraid/pyqasm/actions/workflows/main.yml) [![codecov](https://codecov.io/gh/qBraid/pyqasm/graph/badge.svg?token=92YURMR8T8)](https://codecov.io/gh/qBraid/pyqasm) diff --git a/docs/_static/pyqasm-dark-no-text.svg b/docs/_static/pyqasm-dark-no-text.svg new file mode 100644 index 00000000..d115f890 --- /dev/null +++ b/docs/_static/pyqasm-dark-no-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/_static/pyqasm-dark.svg b/docs/_static/pyqasm-dark.svg new file mode 100644 index 00000000..366268b3 --- /dev/null +++ b/docs/_static/pyqasm-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/_static/pyqasm-light-no-text.svg b/docs/_static/pyqasm-light-no-text.svg new file mode 100644 index 00000000..639a325c --- /dev/null +++ b/docs/_static/pyqasm-light-no-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/_static/pyqasm-light.svg b/docs/_static/pyqasm-light.svg new file mode 100644 index 00000000..04476ad2 --- /dev/null +++ b/docs/_static/pyqasm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file From 50c47cb0fed0590768008406fa888c7318a62bcf Mon Sep 17 00:00:00 2001 From: "A.C.E07" Date: Mon, 16 Feb 2026 00:13:29 +0800 Subject: [PATCH 2/4] Updated changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49c6bf60..eac2ca06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Types of changes: ### Improved / Modified - Moved the `visit_map` from the `visit_statement` function to a class level variable for improved efficiency. ([#279](https://github.com/qBraid/pyqasm/pull/279)) +- Added SVG light and dark mode versions of PyQASM logo, with and without text, and added dynamic logo mode to `README.md` based on color palette used on user-side. ([#287](https://github.com/qBraid/pyqasm/pull/288)) ### Deprecated From c96befc84976d1cc99777cc787a3f30904d2b320 Mon Sep 17 00:00:00 2001 From: "A.C.E07" Date: Tue, 17 Feb 2026 04:46:17 +0800 Subject: [PATCH 3/4] Trimmed redundant space --- docs/_static/pyqasm-dark-no-text.svg | 2 +- docs/_static/pyqasm-dark.svg | 2 +- docs/_static/pyqasm-light-no-text.svg | 2 +- docs/_static/pyqasm-light.svg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_static/pyqasm-dark-no-text.svg b/docs/_static/pyqasm-dark-no-text.svg index d115f890..43646ae7 100644 --- a/docs/_static/pyqasm-dark-no-text.svg +++ b/docs/_static/pyqasm-dark-no-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/_static/pyqasm-dark.svg b/docs/_static/pyqasm-dark.svg index 366268b3..f8fa1792 100644 --- a/docs/_static/pyqasm-dark.svg +++ b/docs/_static/pyqasm-dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/_static/pyqasm-light-no-text.svg b/docs/_static/pyqasm-light-no-text.svg index 639a325c..102fcf0b 100644 --- a/docs/_static/pyqasm-light-no-text.svg +++ b/docs/_static/pyqasm-light-no-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/_static/pyqasm-light.svg b/docs/_static/pyqasm-light.svg index 04476ad2..67199552 100644 --- a/docs/_static/pyqasm-light.svg +++ b/docs/_static/pyqasm-light.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From ebb314722baac1c045e546470eb86ded458f1766 Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Mon, 16 Feb 2026 16:13:33 -0600 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eac2ca06..dd71109d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ Types of changes: ### Improved / Modified - Moved the `visit_map` from the `visit_statement` function to a class level variable for improved efficiency. ([#279](https://github.com/qBraid/pyqasm/pull/279)) -- Added SVG light and dark mode versions of PyQASM logo, with and without text, and added dynamic logo mode to `README.md` based on color palette used on user-side. ([#287](https://github.com/qBraid/pyqasm/pull/288)) +- Added SVG light and dark mode versions of PyQASM logo, with and without text, and added dynamic logo mode to `README.md` based on color palette used on user-side. ([#288](https://github.com/qBraid/pyqasm/pull/288)) ### Deprecated