diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2775ad7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "pip" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/.github/workflows/bandit.yml b/.github/workflows/bandit.yml new file mode 100644 index 0000000..ec9fd2a --- /dev/null +++ b/.github/workflows/bandit.yml @@ -0,0 +1,58 @@ +name: Bandit + +on: + workflow_dispatch: { } + pull_request: + branches: + - main + +jobs: + analyze: + runs-on: 'ubuntu-latest' + permissions: + security-events: write + actions: read + contents: read + steps: + - name: Set up Python 3.9 + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Install Bandit + shell: bash + run: pip install bandit[sarif] + + - name: Checkout repository + uses: actions/checkout@v4 + with: + token: ${{ secrets.RELEASE_TOKEN }} + + - name: Run Bandit - Generate SARIF report and check for HIGH severity issues + id: high_severity_check + shell: bash + run: | + # Run Bandit to generate SARIF report + bandit . -r -c ipas_default.config -f sarif -o results.sarif || true + + # Check the SARIF report for high severity issues + if grep -q '"SEVERITY.HIGH": [1-9]' results.sarif; then + echo "HIGH severity issues found! Workflow will fail after reporting." + echo "high_severity_issues=true" >> $GITHUB_OUTPUT + else + echo "No HIGH severity issues found!" + fi + + - name: Upload SARIF to GitHub Security tab + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + category: bandit + + - name: Fail workflow if HIGH severity issues were found + if: steps.high_severity_check.outputs.high_severity_issues == 'true' + shell: bash + run: | + echo "ERROR: HIGH severity security issues were found by Bandit." + echo "Review the security report and fix all HIGH severity issues before merging." + exit 1 \ No newline at end of file diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml new file mode 100644 index 0000000..c22599b --- /dev/null +++ b/.github/workflows/check-build.yml @@ -0,0 +1,43 @@ +name: Check build + +on: + pull_request: + types: + - opened + - synchronize + - reopened + +jobs: + build-test: + runs-on: 'ubuntu-latest' + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set Up Python + uses: actions/setup-python@v4 + with: + cache: 'pip' + cache-dependency-path: './docs/requirements.txt' + python-version: '3.12.10' + + - name: Install Dependencies + shell: bash + run: | + pip install -r ./docs/requirements.txt + pip install --upgrade build + + - name: Build + shell: python + run: | + import os + import subprocess + + def build_wheel(): + if not os.path.exists('dist'): + os.makedirs('dist') + subprocess.check_call([ 'python', '-m', 'build', '--wheel' ]) + + build_wheel() + diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml new file mode 100644 index 0000000..8d77c8d --- /dev/null +++ b/.github/workflows/semantic-release.yml @@ -0,0 +1,50 @@ +name: semantic release + +on: + push: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + +env: + GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} + +jobs: + release: + runs-on: ubuntu-latest + + permissions: + contents: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.ref_name }} + fetch-depth: 0 + + - name: Reset branch + run: | + git reset --hard ${{ github.sha }} + + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: '3.12.10' + cache: 'pip' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install setuptools wheel python-semantic-release build + + - name: Release + run: | + # symbolic link to fix an error when running a build_command + sudo ln -s /home/runner/_work/_tool/Python/3.12.10/x64/lib/libpython3.12.so.1.0 /usr/lib/libpython3.12.so.1.0 + semantic-release version + semantic-release publish diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f10e3b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +.idea +.vscode +__pycache__ +build +dist +*.egg-info +build +docs/_build +docs\_build + +# Common Python entries +*.py[cod] +*.so +*.dylib +*.egg +*.egg-info +.eggs +*.log +*.pot +.venv/ + +.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a0cf709 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +# CHANGELOG diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f682f4e..6a92e6b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ### License - is licensed under the terms in [LICENSE]. By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms. +Intel® Sphinx Theme is licensed under the terms in [LICENSE](https://github.com/intel/intel-sphinx-theme/blob/main/LICENSE.md). By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms. ### Sign your work diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..f49a4e1 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2240c60 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include intel_sphinx_theme/theme.conf +include intel_sphinx_theme/theme.toml +recursive-include intel_sphinx_theme/static * +recursive-include intel_sphinx_theme/templates *.html \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..8898eca --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +# Sphinx theme based on Intel's Design System + +## Installation and usage + +1. Install the `intel_sphinx_theme` using `pip`: +``` +pip install git+https://github.com/intel/intel-sphinx-theme +``` + +2. Update the `html_theme` variable in your `conf.py`: + +``` +html_theme = 'intel_sphinx_theme' +``` + +## Configuration + +### Theme Logo + +To add a logo at the left of your navigation bar, use `html_logo` variable to set the path to the logo file. + +``` +html_logo = +``` + +### Version and language selectors + +To enable a version and language selectors, add the following configuration to your `conf.py` in `html_context`: + +``` +html_context = { + 'current_version': 'latest', + 'current_language': 'en', + 'languages': (('English', '/en/latest/'), ('Chinese', '/cn/latest/')), + 'versions': (('latest', '/en/latest/'), ('2022.1', '/en/2022.1')) +} +``` + +You can add selectors only for versions or languages. +If you want to add version selector you must define both `current_version` and `versions` properties. +If you want to add version selector you must define both `current_language` and `languages` properties. + + +### Release process and versioning + +Create your feature branches, then create a PR to merge it into main. Apply the feedback, and wait for the approval, semantic-release is going to assign the correct version according to the commits. + +### Maintainers + +* Erin Olmon +* Agustín Francesa diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..367737d --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,43 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +html: + @$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)"/html $(SPHINXOPTS) $(O) + mkdir -p "$(BUILDDIR)"/html/_static + cp _static/switcher.json "$(BUILDDIR)"/html/_static/switcher.json + cp _static/redirects/guide-homepage-redirect.html "$(BUILDDIR)"/html/index.html + +.PHONY: html-cb html-tb html-all + +html-cb: + SUBTHEME="default" $(SPHINXBUILD) -b html $(SOURCEDIR) $(BUILDDIR)/html/default $(SPHINXOPTS) $(O) + mkdir -p "$(BUILDDIR)"/html/_static + cp _static/switcher.json $(BUILDDIR)/html/_static/switcher.json + cp _static/redirects/guide-homepage-redirect.html $(BUILDDIR)/html/default/index.html + echo '' > "$(BUILDDIR)"/html/index.html + +html-tb: + SUBTHEME="tb" $(SPHINXBUILD) -b html $(SOURCEDIR) $(BUILDDIR)/html/tb $(SPHINXOPTS) $(O) + mkdir -p "$(BUILDDIR)"/html/_static + cp _static/switcher.json $(BUILDDIR)/html/_static/switcher.json + cp _static/redirects/guide-homepage-redirect.html $(BUILDDIR)/html/tb/index.html + +html-all: html-cb html-tb + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) \ No newline at end of file diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..578eb20 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,8 @@ +# How to build Intel Sphinx Theme documents locally + +``` +pip install -r ./docs/requirements.txt +pip install -e . +cd docs/ +make html +``` diff --git a/docs/_static/favicon.png b/docs/_static/favicon.png new file mode 100644 index 0000000..922671a Binary files /dev/null and b/docs/_static/favicon.png differ diff --git a/docs/_static/favicon.svg b/docs/_static/favicon.svg new file mode 100644 index 0000000..56748c9 --- /dev/null +++ b/docs/_static/favicon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/docs/_static/logo-dark.png b/docs/_static/logo-dark.png new file mode 100644 index 0000000..0fdaae7 Binary files /dev/null and b/docs/_static/logo-dark.png differ diff --git a/docs/_static/logo.svg b/docs/_static/logo.svg new file mode 100644 index 0000000..d09c644 --- /dev/null +++ b/docs/_static/logo.svg @@ -0,0 +1,25 @@ + + + + + + + + \ No newline at end of file diff --git a/docs/_static/redirects/guide-homepage-redirect.html b/docs/_static/redirects/guide-homepage-redirect.html new file mode 100644 index 0000000..7b31a25 --- /dev/null +++ b/docs/_static/redirects/guide-homepage-redirect.html @@ -0,0 +1 @@ + diff --git a/docs/_static/switcher.json b/docs/_static/switcher.json new file mode 100644 index 0000000..dbbe24b --- /dev/null +++ b/docs/_static/switcher.json @@ -0,0 +1,12 @@ +[ + { + "name": "Classic Blue", + "version": "default", + "url": "/default/" + }, + { + "name": "Tiber", + "version": "tb", + "url": "/tb/" + } +] diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..e086647 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,108 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'intel sphinx theme' +copyright = '2024, Intel' +author = 'Katarzyna Bojarowska' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [ + 'sphinx_copybutton', + 'sphinxcontrib.images', + 'sphinx.ext.todo', + 'sphinx.ext.autodoc', + 'sphinx_design', + 'sphinx_togglebutton', +] + +todo_include_todos = True + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +# -- Options for autoapi ------------------------------------------------------- +autoapi_type = "python" +autoapi_dirs = ["../intel_sphinx_theme"] +autoapi_keep_files = True +autoapi_root = "api" +autoapi_member_order = "groupwise" + +html_theme = "intel_sphinx_theme" + +# Enabling building both themes +import os + +# Make sure html_context is defined +html_context = globals().get("html_context", {}) + +# Use environment variable to override or default to existing context value +sub_theme = os.environ.get("SUBTHEME") or html_context.get("subtheme", "default") + +# Set the color scheme in the context so templates have it +html_context["color_scheme"] = sub_theme +html_static_path = ['_static'] + +# Use the color scheme to decide theme variant or any config overrides +if sub_theme == "tb": + html_context = { + "color_scheme": "tb", + } +else: + html_context = { + "color_scheme": "default", + } + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +# Set logo and favicon separately +html_logo = "_static/logo.svg" # Logo shown in the navigation bar +html_favicon = "_static/favicon.svg" # Favicon shown in the browser tab + +html_theme_options = { + "header_links_before_dropdown": 2, + "show_prev_next": False, + "check_switcher": False, + "navbar_start": ["navbar-logo", "version-switcher"], + #"navbar_end": ["navbar-icon-links", "version-switcher"], + "primary_sidebar_end": ["version-switcher"] +} + +html_context = { + "default_mode": "auto", + "header_variant": "spark-squares", + #"header_variant": "spark-color", + #"header_variant": "default", + "footer_variant": "simple", + "content_width": "large", + 'footer_links': [ + ('Terms of Use', 'https://www.intel.com/content/www/us/en/legal/terms-of-use.html'), + ('Cookies', 'https://www.intel.com/content/www/us/en/privacy/intel-cookie-notice.html'), + ('Privacy', 'https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html'), + ], + 'global_link_list': { + 'title': 'Created with', + 'links': [ + {'text': 'Sphinx', 'url': 'https://www.sphinx-doc.org/en/master/'}, + {'text': 'PyData Theme', 'url': 'https://pydata-sphinx-theme.readthedocs.io/'}, + ] + }, +} +# Ensure html_context is not overwritten +html_context.update({ + "color_scheme": sub_theme, +}) + +# Add version switcher configuration +html_theme_options["switcher"] = { + "json_url": "/_static/switcher.json", + "version_match": sub_theme, +} + diff --git a/docs/contributor-guide/index.rst b/docs/contributor-guide/index.rst new file mode 100644 index 0000000..530b753 --- /dev/null +++ b/docs/contributor-guide/index.rst @@ -0,0 +1,13 @@ +Contributor Guide +################# + +These pages contain information about the community that leads, supports, and develops this theme, +including how you can contribute to the project. Contributions are very welcome! In order to get +started, you can install the development version, build the example docs, and develop the css/js of +the theme. More details on these tasks can be found in the contributing section of the documentation. + +.. toctree:: + :hidden: + :caption: Contributor guide + + setup.rst \ No newline at end of file diff --git a/docs/contributor-guide/setup.rst b/docs/contributor-guide/setup.rst new file mode 100644 index 0000000..3848778 --- /dev/null +++ b/docs/contributor-guide/setup.rst @@ -0,0 +1,82 @@ +Getting started +=============== + +Get started with development +---------------------------- + +This section provides a straightforward guide to initiate local development of this theme, enabling you to contribute effectively. + +Steps for Contributing Changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +We adhere to a `standard GitHub workflow `_ comprising: + +- Creating a branch +- Opening a pull request +- Rectifying issues identified by various linters and checks +- Addressing code review feedback + +The following sections elaborate on these steps. + +Clone the Repository +~~~~~~~~~~~~~~~~~~~~ + +To begin, obtain your own copy of the `pydata-sphinx-theme` codebase by cloning it for local development: + +**Clone the repository locally** to have a working copy on your machine:: + + $ git clone https://github.com/intel/intel-sphinx-theme + $ cd intel-sphinx-theme + +Set up Your Tools +~~~~~~~~~~~~~~~~~ + +Sphinx site building employs a mix of Python and Jinja to manage HTML, SCSS, and Javascript. + +Sphinx installation: + +- `Sphinx `_ + +The remaining dependencies can be found in the `requirements.txt` file in `/docs/requirements.txt`. Run the command:: + + $ pip install -r requirements.txt + +from the docs directory to install them. + +Build the Documentation and Install the Theme +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Prior to building the documentation, install the current theme version by executing the:: + + $ python setup.py install --user + +command in the `intel_sphinx_theme` directory. + +To build the documentation, navigate to the `docs` directory, ensuring all dependencies are installed. Then, execute the:: + + $ make.bat html + +command in the `docs` directory to build the example documentation. + +This will install the required dependencies and build the documentation located in the `docs/` folder, placing the output in the `docs/_build/html` folder. If the documentation has already been built, only updated pages will be rebuilt. You can preview the documentation locally by opening an HTML file from this folder. + +Alternatively, use the built-in Python `http.server `_ by running:: + + $ python -m http.server -d docs/_build/html/ + +A local URL will be displayed, which you can open in a browser to explore the HTML files. + +Modify Content and Rebuild +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +After building the documentation, edit a source file to observe how the documentation is updated with each new build. + +1. **Edit a page**. For instance, add a word or correct a typo on any page. +2. **Rebuild the documentation** using `make.bat html`. + +Compile the CSS/JS Assets +~~~~~~~~~~~~~~~~~~~~~~~~~ + +The theme's source files for CSS are located in `intel_sphinx_theme/intel_sphinx_theme/static`, while those for JS are in `intel_sphinx_theme/intel_sphinx_theme/assets`. + +To view the result in the documentation, rebuild the docs once more. \ No newline at end of file diff --git a/docs/custom-content/components/admonitions.rst b/docs/custom-content/components/admonitions.rst new file mode 100644 index 0000000..3a91dbb --- /dev/null +++ b/docs/custom-content/components/admonitions.rst @@ -0,0 +1,231 @@ +.. + Copyright (c) 2021 Pradyun Gedam + Licensed under Creative Commons Attribution-ShareAlike 4.0 International License + SPDX-License-Identifier: CC-BY-SA-4.0 + +=========== +Admonitions +=========== + +Sphinx provides several different types of admonitions. + +topic +===== + +.. topic:: This is a topic. + + Use this to group related content under a common heading. + +Example:: + + .. topic:: Example Topic + + This is an example of a topic. + +admonition +========== + +.. admonition:: The one with the custom titles + + Use this when you need a custom title for your admonition. + +Example:: + + .. admonition:: Custom Title + + This is an example of an admonition with a custom title. + +attention +========= + +.. attention:: + + Use this to draw attention to critical information or warnings. + +Example:: + + .. attention:: + + Pay attention to this important detail. + +caution +======= + +.. caution:: + + Use this to warn users about potential risks or hazards. + +Example:: + + .. caution:: + + Be cautious when proceeding with this action. + +danger +====== + +.. danger:: + + Use this to indicate a dangerous situation that could result in serious injury, death, or destruction of data. + +Example:: + + .. danger:: + + This action is extremely dangerous. Proceed with caution. + +error +===== + +.. error:: + + Use this to indicate an error or a problem that needs to be fixed. + +Example:: + + .. error:: + + An error occurred. Please check your configuration. + +hint +==== + +.. hint:: + + Use this to provide helpful hints or tips. + +Example:: + + .. hint:: + + Remember to save your work frequently. + +important +========= + +.. important:: + + Use this to highlight important information that should not be overlooked. + +Example:: + + .. important:: + + This step is critical for the process to succeed. + +note +==== + +.. note:: + + Use this to provide additional information or context. + +Example:: + + .. note:: + + This is additional context for better understanding. + +seealso +======= + +.. seealso:: + + Use this to reference other relevant information or resources. + +Example:: + + .. seealso:: + + Refer to the documentation for more details. + +tip +=== + +.. tip:: + + Use this to provide useful tips or recommendations. + +Example:: + + .. tip:: + + Use keyboard shortcuts to improve productivity. + +todo +==== + +.. todo:: + + Use this to indicate tasks that need to be completed. This needs the sphinx.ext.todo extension. + +Example:: + + .. todo:: + + Add more examples to this section. + +warning +======= + +.. warning:: + + Use this to warn users about potential issues or problems. + +Example:: + + .. warning:: + + This feature is experimental and may not work as expected. + +versionadded +============ + +.. versionadded:: v0.1.1 + + Use this to indicate when a feature was added. + +Example:: + + .. versionadded:: 2.0 + + This feature was added in version 2.0. + +versionchanged +============== + +.. versionchanged:: v0.1.1 + + Use this to indicate when a feature was changed. + +Example:: + + .. versionchanged:: 2.1 + + This feature was updated in version 2.1. + +deprecated +========== + +.. deprecated:: v0.1.1 + + Use this to indicate when a feature is deprecated and should not be used. + +Example:: + + .. deprecated:: 3.0 + + This feature is deprecated and will be removed in future versions. + +versionremoved +============== + +.. versionremoved:: v0.1.1 + + Use this to indicate when a feature was removed. + +Example:: + + .. versionremoved:: 4.0 + + This feature was removed in version 4.0. diff --git a/docs/custom-content/components/api.rst b/docs/custom-content/components/api.rst new file mode 100644 index 0000000..b098963 --- /dev/null +++ b/docs/custom-content/components/api.rst @@ -0,0 +1,29 @@ +.. + Copyright (c) 2021 Pradyun Gedam + Licensed under Creative Commons Attribution-ShareAlike 4.0 International License + SPDX-License-Identifier: CC-BY-SA-4.0 + +***************** +API documentation +***************** + +Using Sphinx's ``sphinx.ext.autodoc`` plugin, it is possible to auto-generate documentation of a Python module. + +.. tip:: + Avoid having in-function-signature type annotations with autodoc, + by setting the following options: + + .. code-block:: python + + # -- Options for autodoc ---------------------------------------------------- + # https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#configuration + + # Automatically extract typehints when specified and place them in + # descriptions of the relevant function/method. + autodoc_typehints = "description" + + # Don't show class signature with the class' name. + autodoc_class_signature = "separated" + +.. automodule:: urllib.parse + :members: diff --git a/docs/custom-content/components/blocks.rst b/docs/custom-content/components/blocks.rst new file mode 100644 index 0000000..1f3a40e --- /dev/null +++ b/docs/custom-content/components/blocks.rst @@ -0,0 +1,266 @@ +.. + Copyright (c) 2021 Pradyun Gedam + Licensed under Creative Commons Attribution-ShareAlike 4.0 International License + SPDX-License-Identifier: CC-BY-SA-4.0 + +====== +Blocks +====== + +Block Quotes +============ + +Block quotes consist of indented body elements: + + My theory by A. Elk. Brackets Miss, brackets. This theory goes + as follows and begins now. All brontosauruses are thin at one + end, much much thicker in the middle and then thin again at the + far end. That is my theory, it is mine, and belongs to me and I + own it, and what it is too. + + -- Anne Elk (Miss) + +Epigraph +-------- + +https://docutils.sourceforge.io/docs/ref/rst/directives.html#epigraph + +.. epigraph:: + + My theory by A. Elk. Brackets Miss, brackets. This theory goes + as follows and begins now. All brontosauruses are thin at one + end, much much thicker in the middle and then thin again at the + far end. That is my theory, it is mine, and belongs to me and I + own it, and what it is too. + + -- Anne Elk (Miss) + +Pull quotes +----------- + +https://docutils.sourceforge.io/docs/ref/rst/directives.html#pull-quote + +.. pull-quote:: + + My theory by A. Elk. Brackets Miss, brackets. This theory goes + as follows and begins now. All brontosauruses are thin at one + end, much much thicker in the middle and then thin again at the + far end. That is my theory, it is mine, and belongs to me and I + own it, and what it is too. + + -- Anne Elk (Miss) + +Highlights +---------- + +https://docutils.sourceforge.io/docs/ref/rst/directives.html#highlights + +.. highlights:: + + My theory by A. Elk. Brackets Miss, brackets. This theory goes + as follows and begins now. All brontosauruses are thin at one + end, much much thicker in the middle and then thin again at the + far end. That is my theory, it is mine, and belongs to me and I + own it, and what it is too. + + -- Anne Elk (Miss) + +Line Blocks +=========== + +https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#line-blocks + +This is a normal text paragraph. + +| This is a line block. It ends with a blank line. +| Each new line begins with a vertical bar ("|"). +| Line breaks and initial indents are preserved. +| Continuation lines are wrapped portions of long lines; + they begin with a space in place of the vertical bar. +| The left edge of a continuation line need not be aligned with + the left edge of the text above it. + +| This is a second line block. +| +| Blank lines are permitted internally, but they must begin with a "|". + +This is a normal text paragraph again. + +Monospace Blocks +================ + +Sphinx supports many kinds of monospace blocks. This section is meant to +showcase *all* of them that as known to the author of this page, at the time of +writing. + +Production List +--------------- + +https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#directive-productionlist + + This directive is used to enclose a group of productions. Each production is given on a single line and consists of a name, separated by a colon from the following definition. + +This just shows up as a vanilla ``
``, which is... both nice and a bit
+annoying.
+
+.. productionlist::
+    try_stmt: try1_stmt | try2_stmt
+    try1_stmt: "try" ":" `suite`
+             : ("except" [`expression` ["," `target`]] ":" `suite`)+
+             : ["else" ":" `suite`]
+             : ["finally" ":" `suite`]
+    try2_stmt: "try" ":" `suite`
+             : "finally" ":" `suite`
+             : "this-is-intentionally-very-stupidly-long-to-make-sure-that-this-has-a-proper-scrollbar"
+
+Literal Blocks
+--------------
+
+https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#literal-blocks
+
+    contains a block of text where line breaks and whitespace are significant and must be preserved
+
+This is a normal text paragraph. The next paragraph is a code sample::
+
+    It is not processed in any way, except
+    that the indentation is removed.
+
+    It can span multiple lines.
+
+This is a normal text paragraph again.
+
+They can be quoted without indentation::
+
+>> Great idea!
+>
+> Why didn't I think of that?
+
+.. literalinclude:: ../../../intel_sphinx_theme/__init__.py
+    :language: python
+    :caption: Literal includes can also have captions.
+    :linenos:
+    :lines: 10-20
+
+Doctest Blocks
+--------------
+
+https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#doctest-blocks
+
+    Doctest blocks are interactive Python sessions cut-and-pasted into docstrings. They are meant to illustrate usage by example, and provide an elegant and powerful testing environment via the doctest module in the Python standard library.
+
+.. note::
+
+    This is fine.
+
+>>> print('Python-specific usage examples; begun with ">>>"')
+Python-specific usage examples; begun with ">>>"
+>>> print("(cut and pasted from interactive Python sessions)")
+(cut and pasted from interactive Python sessions)
+>>> print("This is an intentionally very long line because I want to make sure that we are handling scrollable code blocks correctly.")
+This is an intentionally very long line because I want to make sure that we are handling scrollable code blocks correctly.
+
+Parsed Literals
+---------------
+
+https://docutils.sourceforge.io/docs/ref/rst/directives.html#parsed-literal-block
+
+    It is equivalent to a line block with different rendering: typically in a typewriter/monospaced typeface, like an ordinary literal block. Parsed literal blocks are useful for adding hyperlinks to code examples.
+
+.. parsed-literal::
+
+    # parsed-literal test
+    curl -O http://someurl/release-0.1.0.tar-gz
+    echo "This is an intentionally very long line because I want to make sure that we are handling scrollable code blocks correctly."
+
+Code Block
+----------
+
+https://docutils.sourceforge.io/docs/ref/rst/directives.html#code
+
+    The "code" directive constructs a literal block [containing code].
+
+This has an alias of ``code-block``.
+
+
+.. code-block:: python
+    :linenos:
+
+    from typing import Iterator
+
+    # This is an example
+    class Math:
+        @staticmethod
+        def fib(n: int) -> Iterator[int]:
+            """Fibonacci series up to n"""
+            a, b = 0, 1
+            while a < n:
+                yield a
+                a, b = b, a + b
+
+
+    result = sum(Math.fib(42))
+    print("The answer is {}".format(result))
+
+
+With caption
+~~~~~~~~~~~~
+
+.. code-block:: json
+    :caption: Code Blocks can have captions, which also adds a link to it.
+
+    {
+      "session_name": "shorthands",
+      "windows": [
+        {
+          "panes": [
+            {
+              "shell_command": "echo 'This is an intentionally very long line because I want to make sure that we are handling scrollable code blocks correctly.'"
+            }
+          ],
+          "window_name": "long form"
+        }
+      ]
+    }
+
+With line numbers
+~~~~~~~~~~~~~~~~~
+
+.. code-block:: python
+    :linenos:
+    :emphasize-lines: 3,5
+
+    def some_function():
+        interesting = False
+        print("This line is highlighted.")
+        print("This one is not...")
+        print("...but this one is.")
+        print(
+            "This is an intentionally very long line because I want to make sure that we are handling scrollable code blocks correctly."
+        )
+
+Without highlighting
+~~~~~~~~~~~~~~~~~~~~
+
+.. code-block:: text
+
+    # Taken from https://en.wikipedia.org/wiki/Pseudocode#Example
+    algorithm ford-fulkerson is
+        input: Graph G with flow capacity c,
+            source node s,
+            sink node t
+        output: Flow f such that f is maximal from s to t
+
+        (Note that f(u,v) is the flow from node u to node v, and c(u,v) is the flow capacity from node u to node v)
+
+        for each edge (u, v) in GE do
+            f(u, v) ← 0
+            f(v, u) ← 0
+
+        while there exists a path p from s to t in the residual network Gf do
+            let cf be the flow capacity of the residual network Gf
+            cf(p) ← min{cf(u, v) | (u, v) in p}
+            for each edge (u, v) in p do
+                f(u, v) ←  f(u, v) + cf(p)
+                f(v, u) ← −f(u, v)
+
+        return f
diff --git a/docs/custom-content/components/buttons.rst b/docs/custom-content/components/buttons.rst
new file mode 100644
index 0000000..58a8d23
--- /dev/null
+++ b/docs/custom-content/components/buttons.rst
@@ -0,0 +1,432 @@
+Buttons
+=======
+
+.. note::
+   The button component requires the `sphinx-design` extension. Ensure it is installed and enabled in your Sphinx configuration.
+
+Button Groups
+=============
+
+Button groups are used to group buttons together. They can be used to group buttons that are related to each other or to group buttons that are part of the same action.
+
+Left-aligned button groups
+--------------------------
+
+When the button group is left aligned, the action button should appear to the left of the secondary action.
+
+.. grid:: auto
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :tooltip: Action
+
+            Primary action
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :outline:
+            :tooltip: Secondary Action
+
+            Secondary Action
+
+Right-aligned button groups
+---------------------------
+
+When the button group is right aligned, the action button should appear to the right of the secondary action.
+
+.. grid:: auto
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :outline:
+            :tooltip: Secondary Action
+
+            Secondary Action
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :tooltip: Action
+
+            Primary action
+
+Button groups with destructive actions
+--------------------------------------
+
+Whenever the action is destructive, the destructive action should be secondary to the cancel action. The destructive button should use the danger button variant.
+
+.. grid:: auto
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :tooltip: Cancel
+
+            Cancel
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: danger
+            :outline:
+            :tooltip: Delete database cannot be undone
+
+            Delete database
+
+Button Variants
+===============
+
+.. _button-variants:
+
+.. grid:: auto
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :shadow:
+
+            Primary
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: primary
+            :outline:
+            :shadow:
+
+            Secondary
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: secondary
+            :outline:
+            :shadow:
+
+            Accent
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: success
+            :shadow:
+
+            Success
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: warning
+            :shadow:
+
+            Warning
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: danger
+            :shadow:
+
+            Danger
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: muted
+            :shadow:
+
+            Muted
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: light
+            :shadow:
+
+            Light
+
+    .. grid-item::
+
+        .. button-link:: #
+            :color: dark
+            :shadow:
+
+            Dark
+
+Primary Button
+--------------
+
+.. tip:: The primary button is always the filled variant of the primary button. The outline variant is considered to be the secondary button.
+.. button-link:: #
+   :color: primary
+   :tooltip: Primary Button
+
+   Primary Button
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: primary
+      :tooltip: Primary Button
+
+      Primary Button
+
+Secondary Button
+----------------
+
+.. tip:: The secondary button is always the outlined variant of the primary button. It does not have a filled version.
+
+.. button-link:: #
+   :color: primary
+   :outline:
+   :tooltip: Secondary Button (Primary Outlined)
+
+   Secondary Button (Primary Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: primary
+      :outline:
+      :tooltip: Secondary Button (Primary Outlined)
+
+      Secondary Button (Primary Outlined)
+
+Accent Button
+-------------
+.. warning:: The accent button should be used sparingly.
+
+.. button-link:: #
+   :color: secondary
+   :tooltip: Accent Button
+
+   Accent Button
+
+.. button-link:: #
+   :color: secondary
+   :outline:
+   :tooltip: Accent Button (Outlined)
+
+   Accent Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: secondary
+      :tooltip: Accent Button
+
+      Accent Button
+
+   .. button-link:: #
+      :color: secondary
+      :outline:
+      :tooltip: Accent Button (Outlined)
+
+      Accent Button (Outlined)
+
+Success Button
+--------------
+
+.. button-link:: #
+   :color: success
+   :tooltip: Success Button
+
+   Success Button
+
+.. button-link:: #
+   :color: success
+   :outline:
+   :tooltip: Success Button (Outlined)
+
+   Success Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: success
+      :tooltip: Success Button
+
+      Success Button
+
+   .. button-link:: #
+      :color: success
+      :outline:
+      :tooltip: Success Button (Outlined)
+
+      Success Button (Outlined)
+
+Danger Button
+-------------
+
+.. button-link:: #
+   :color: danger
+   :tooltip: Danger Button
+
+   Danger Button
+
+.. button-link:: #
+   :color: danger
+   :outline:
+   :tooltip: Danger Button (Outlined)
+
+   Danger Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: danger
+      :tooltip: Danger Button
+
+      Danger Button
+
+   .. button-link:: #
+      :color: danger
+      :outline:
+      :tooltip: Danger Button (Outlined)
+
+      Danger Button (Outlined)
+
+Warning Button
+--------------
+
+.. button-link:: #
+   :color: warning
+   :tooltip: Warning Button
+
+   Warning Button
+
+.. button-link:: #
+   :color: warning
+   :outline:
+   :tooltip: Warning Button (Outlined)
+
+   Warning Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: warning
+      :tooltip: Warning Button
+
+      Warning Button
+
+   .. button-link:: #
+      :color: warning
+      :outline:
+      :tooltip: Warning Button (Outlined)
+
+      Warning Button (Outlined)
+
+Light Button
+------------
+
+.. button-link:: #
+   :color: light
+   :tooltip: Light Button
+
+   Light Button
+
+.. button-link:: #
+   :color: light
+   :outline:
+   :tooltip: Light Button (Outlined)
+
+   Light Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: light
+      :tooltip: Light Button
+
+      Light Button
+
+   .. button-link:: #
+      :color: light
+      :outline:
+      :tooltip: Light Button (Outlined)
+
+      Light Button (Outlined)
+
+Dark Button
+-----------
+
+.. button-link:: #
+   :color: dark
+   :tooltip: Dark Button
+
+   Dark Button
+
+.. button-link:: #
+   :color: dark
+   :outline:
+   :tooltip: Dark Button (Outlined)
+
+   Dark Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: dark
+      :tooltip: Dark Button
+
+      Dark Button
+
+   .. button-link:: #
+      :color: dark
+      :outline:
+      :tooltip: Dark Button (Outlined)
+
+      Dark Button (Outlined)
+
+Muted Button
+------------
+
+.. button-link:: #
+   :color: muted
+   :tooltip: Muted Button
+
+   Muted Button
+
+.. button-link:: #
+   :color: muted
+   :outline:
+   :tooltip: Muted Button (Outlined)
+
+   Muted Button (Outlined)
+
+.. code-block:: rst
+
+   .. button-link:: #
+      :color: muted
+      :tooltip: Muted Button
+
+      Muted Button
+
+   .. button-link:: #
+      :color: muted
+      :outline:
+      :tooltip: Muted Button (Outlined)
+
+      Muted Button (Outlined)
+
+Accessibility Note
+-----------------
+
+.. note:: Accessibility considerations
+   `Sphinx Design buttons
+   `__
+   are actually links, meaning they are rendered in HTML with ```` tags
+   instead of ``
+
+
+
+
+{% endif %}
\ No newline at end of file
diff --git a/intel_sphinx_theme/link_list.py b/intel_sphinx_theme/link_list.py
new file mode 100644
index 0000000..31076ce
--- /dev/null
+++ b/intel_sphinx_theme/link_list.py
@@ -0,0 +1,53 @@
+from docutils import nodes
+from docutils.parsers.rst import Directive, directives
+
+class LinkList(Directive):
+    has_content = True
+    option_spec = {
+        'position': directives.unchanged,  # optional: 'sidebar' or other positions
+        'title': directives.unchanged_required  # required title
+    }
+
+    def run(self):
+        # Ensure the title is present
+        title = self.options.get('title')
+        if not title:
+            error = self.state_machine.reporter.error(
+                'The "title" option is required for the "link-list" directive.',
+                nodes.literal_block(self.block_text, self.block_text),
+                line=self.lineno
+            )
+            return [error]
+
+        position = self.options.get('position', 'content')  # default to content
+
+        # Create HTML content for the linked list
+        content = ['')
+
+        # If position is 'sidebar', store the content in temp_data for this page
+        if position == 'sidebar':
+            sidebar_content = '\n'.join(content)
+            print(f"Storing sidebar content for page {self.state.document.settings.env.docname}: {sidebar_content}")
+            # Store the content in temp_data with a key specific to this page
+            if 'custom_sidebar_content' not in self.state.document.settings.env.temp_data:
+                self.state.document.settings.env.temp_data['custom_sidebar_content'] = {}
+            self.state.document.settings.env.temp_data['custom_sidebar_content'][self.state.document.settings.env.docname] = sidebar_content
+            return []
+
+        # Otherwise, return the content as raw HTML for in-page rendering
+        return [nodes.raw('', '\n'.join(content), format='html')]
diff --git a/intel_sphinx_theme/static/__init__.py b/intel_sphinx_theme/static/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/intel_sphinx_theme/static/css/components/admonitions/index.css b/intel_sphinx_theme/static/css/components/admonitions/index.css
new file mode 100644
index 0000000..132c4bf
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/admonitions/index.css
@@ -0,0 +1,2 @@
+@import './style.css';
+@import './properties.css';
diff --git a/intel_sphinx_theme/static/css/components/admonitions/properties.css b/intel_sphinx_theme/static/css/components/admonitions/properties.css
new file mode 100644
index 0000000..c7183d7
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/admonitions/properties.css
@@ -0,0 +1,29 @@
+:root {
+    --spark-color-danger: var(--spark-color-coral-shade1);
+    --spark-color-danger-before: var(--spark-color-coral-shade2);
+    --spark-color-attention: var(--spark-color-rust);
+}
+
+html[data-theme='light'] {
+    --spark-color-warning: var(--spark-color-daisy-shade2);
+    --spark-color-warning-before: var(--spark-color-daisy-tint1);
+    --spark-color-info: var(--spark-color-classic-blue);
+    --spark-color-info-before: var(--spark-color-classic-blue-tint2);
+    --spark-color-success-before: var(--spark-color-moss-tint2);
+    --spark-color-success: var(--spark-color-moss-shade2);
+    --pst-color-info: var(--spark-color-classic-blue);
+    --pst-color-info-before: var(--spark-color-classic-blue-tint2);
+    --spark-color-attention-before: var(--spark-color-rust-tint2);
+}
+
+html[data-theme='dark'] {
+    --spark-color-warning: var(--spark-color-daisy-tint1);
+    --spark-color-warning-before: var(--spark-color-daisy-shade2);
+    --spark-color-info: var(--spark-color-energy-blue);
+    --spark-color-info-before: var(--spark-color-energy-blue-shade2);
+    --spark-color-success-before: var(--spark-color-moss-shade2);
+    --spark-color-success: var(--spark-color-moss-tint2);
+    --pst-color-info: var(--spark-color-energy-blue);
+    --pst-color-info-before: var(--spark-color-energy-blue-shade2);
+    --spark-color-attention-before: var(--spark-color-rust-shade1);
+}
diff --git a/intel_sphinx_theme/static/css/components/admonitions/style.css b/intel_sphinx_theme/static/css/components/admonitions/style.css
new file mode 100644
index 0000000..554485d
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/admonitions/style.css
@@ -0,0 +1,343 @@
+div.admonition,
+.admonition {
+    border-color: var(--spark-color-info);
+    background-color: var(--spark-color-layer1);
+}
+
+div.admonition > .admonition-title:after,
+.admonition > .admonition-title:after {
+    color: var(--spark-color-info);
+}
+
+div.admonition.attention,
+.admonition.attention {
+    border-color: var(--spark-color-attention);
+}
+
+div.admonition.attention > .admonition-title:before,
+.admonition.attention > .admonition-title:before {
+    background-color: var(--spark-color-attention-before);
+}
+
+div.admonition.attention > .admonition-title:after,
+.admonition.attention > .admonition-title:after {
+    color: var(--spark-color-attention);
+}
+
+div.admonition.caution,
+.admonition.caution {
+    border-color: var(--spark-color-warning);
+}
+
+div.admonition.caution > .admonition-title:before,
+.admonition.caution > .admonition-title:before {
+    background-color: var(--spark-color-warning-before);
+}
+
+div.admonition.caution > .admonition-title:after,
+.admonition.caution > .admonition-title:after {
+    color: var(--spark-color-warning);
+}
+
+div.admonition.warning,
+.admonition.warning {
+    border-color: var(--spark-color-warning);
+}
+
+div.admonition.warning > .admonition-title:before,
+.admonition.warning > .admonition-title:before {
+    background-color: var(--spark-color-warning-before);
+}
+
+div.admonition.warning > .admonition-title:after,
+.admonition.warning > .admonition-title:after {
+    color: var(--spark-color-warning);
+}
+
+div.admonition.danger,
+.admonition.danger {
+    border-color: var(--spark-color-danger);
+}
+
+div.admonition.danger > .admonition-title:before,
+.admonition.danger > .admonition-title:before {
+    background-color: var(--spark-color-danger-before);
+}
+
+div.admonition.danger > .admonition-title:after,
+.admonition.danger > .admonition-title:after {
+    color: var(--spark-color-danger);
+}
+
+div.admonition.error,
+.admonition.error {
+    border-color: var(--spark-color-danger);
+}
+
+div.admonition.error > .admonition-title:before,
+.admonition.error > .admonition-title:before {
+    background-color: var(--spark-color-danger-before);
+}
+
+div.admonition.error > .admonition-title:after,
+.admonition.error > .admonition-title:after {
+    color: var(--spark-color-danger);
+}
+
+div.admonition.hint,
+.admonition.hint {
+    border-color: var(--spark-color-success);
+}
+
+div.admonition.hint > .admonition-title:before,
+.admonition.hint > .admonition-title:before {
+    background-color: var(--spark-color-success-before);
+}
+
+div.admonition.hint > .admonition-title:after,
+.admonition.hint > .admonition-title:after {
+    color: var(--spark-color-success);
+}
+
+div.admonition.tip,
+.admonition.tip {
+    border-color: var(--spark-color-success);
+}
+
+div.admonition.tip > .admonition-title:before,
+.admonition.tip > .admonition-title:before {
+    background-color: var(--spark-color-success-before);
+}
+
+div.admonition.tip > .admonition-title:after,
+.admonition.tip > .admonition-title:after {
+    color: var(--spark-color-success);
+}
+
+div.admonition.important,
+.admonition.important {
+    border-color: var(--spark-color-attention);
+}
+
+div.admonition.important > .admonition-title:before,
+.admonition.important > .admonition-title:before {
+    background-color: var(--spark-color-attention-before);
+}
+
+div.admonition.important > .admonition-title:after,
+.admonition.important > .admonition-title:after {
+    color: var(--spark-color-attention);
+}
+
+div.admonition.note,
+.admonition.note {
+    border-color: var(--spark-color-info);
+}
+
+div.admonition.note > .admonition-title:before,
+.admonition.note > .admonition-title:before {
+    background-color: var(--spark-color-info-before);
+}
+
+div.admonition.note > .admonition-title:after,
+.admonition.note > .admonition-title:after {
+    color: var(--spark-color-info);
+}
+
+div.admonition.seealso,
+.admonition.seealso {
+    border-color: var(--spark-color-success);
+}
+
+div.admonition.seealso > .admonition-title:before,
+.admonition.seealso > .admonition-title:before {
+    background-color: var(--spark-color-success-before);
+}
+
+div.admonition.seealso > .admonition-title:after,
+.admonition.seealso > .admonition-title:after {
+    color: var(--spark-color-success);
+}
+
+div.admonition.admonition-todo,
+.admonition.admonition-todo {
+    border-color: var(--spark-color-border);
+}
+
+div.admonition.admonition-todo > .admonition-title:before,
+.admonition.admonition-todo > .admonition-title:before {
+    background-color: var(--spark-color-border);
+}
+
+div.admonition.admonition-todo > .admonition-title:after,
+.admonition.admonition-todo > .admonition-title:after {
+    color: var(--spark-color-border);
+}
+
+div.admonition.sidebar.attention,
+.admonition.sidebar.attention,
+div.admonition.sidebar.important,
+.admonition.sidebar.important {
+    border-color: var(--spark-color-attention);
+}
+
+div.admonition.sidebar.caution,
+.admonition.sidebar.caution,
+div.admonition.sidebar.warning,
+.admonition.sidebar.warning {
+    border-color: var(--spark-color-warning);
+}
+
+div.admonition.sidebar.danger,
+.admonition.sidebar.danger,
+div.admonition.sidebar.error,
+.admonition.sidebar.error {
+    border-color: var(--spark-color-danger);
+}
+
+div.admonition.sidebar.hint,
+.admonition.sidebar.hint,
+div.admonition.sidebar.tip,
+.admonition.sidebar.tip,
+div.admonition.sidebar.seealso,
+.admonition.sidebar.seealso {
+    border-color: var(--spark-color-success);
+}
+
+div.admonition.sidebar.note,
+.admonition.sidebar.note,
+div.admonition.sidebar.todo,
+.admonition.sidebar.todo {
+    border-color: var(--spark-color-info);
+}
+
+div.topic,
+div.topic.contents,
+nav.contents,
+aside.topic {
+    background-color: var(--spark-color-surface);
+    border-color: var(--spark-color-border);
+}
+
+aside.sidebar {
+    border: 1px solid var(--spark-color-border);
+    background-color: var(--spark-color-surface);
+}
+
+aside.sidebar p.sidebar-title {
+    border-bottom: 1px solid var(--spark-color-border);
+    font-family: var(--pst-font-family-heading);
+    font-weight: var(--pst-font-weight-heading);
+}
+
+div.admonition.note > .admonition-title:before,
+.admonition.note > .admonition-title:before {
+    background-color: var(--spark-color-info-before);
+}
+
+div.admonition.admonition-todo > .admonition-title:before,
+.admonition.admonition-todo > .admonition-title:before {
+    background-color: var(--spark-color-cobalt-tint1);
+}
+
+div.admonition.admonition-todo,
+.admonition.admonition-todo {
+    border-color: var(--spark-color-cobalt);
+}
+
+div.admonition.admonition-todo > .admonition-title:after,
+.admonition.admonition-todo > .admonition-title:after {
+    color: var(--spark-color-cobalt);
+}
+
+/* Icon replace */
+.admonition > .admonition-title:after,
+div.admonition > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f13a';
+}
+
+div.admonition.attention > .admonition-title:after,
+.admonition.attention > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f105';
+}
+
+div.admonition.caution > .admonition-title:after,
+.admonition.caution > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f106';
+}
+
+div.admonition.danger > .admonition-title:after,
+.admonition.danger > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f106';
+}
+
+div.admonition.error > .admonition-title:after,
+.admonition.error > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f182';
+}
+
+div.admonition.hint > .admonition-title:after,
+.admonition.hint > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f141';
+}
+
+.admonition.important > .admonition-title:after,
+div.admonition.important > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f105';
+}
+
+div.admonition.important > .admonition-title:after,
+.admonition.important > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f1ce';
+}
+
+div.admonition.note > .admonition-title:after,
+.admonition.note > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f1ce';
+}
+
+div.admonition.seealso > .admonition-title:after,
+.admonition.seealso > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f1b1';
+}
+
+div.admonition.tip > .admonition-title:after,
+.admonition.tip > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f141';
+}
+
+div.admonition.warning > .admonition-title:after,
+.admonition.warning > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f106';
+}
+
+div.admonition.admonition-todo > .admonition-title:after,
+.admonition.admonition-todo > .admonition-title:after {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f1f3';
+}
diff --git a/intel_sphinx_theme/static/css/components/footer/index.css b/intel_sphinx_theme/static/css/components/footer/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/footer/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/footer/style.css b/intel_sphinx_theme/static/css/components/footer/style.css
new file mode 100644
index 0000000..699dbb5
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/footer/style.css
@@ -0,0 +1,75 @@
+.bd-footer {
+    min-height: 100px;
+    border-top: 1px solid var(--spark-color-border);
+}
+
+.bd-footer__inner.container {
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    flex-direction: column;
+}
+
+.spark-footer-container {
+    text-align: center;
+}
+
+.spark-text-muted {
+    color: var(--spark-color-text-muted);
+    font-size: 0.8em;
+}
+
+.spark-footer-container {
+    display: flex;
+    justify-content: center;
+    padding: 1rem 0;
+    flex-wrap: wrap;
+}
+
+.spark-homepage {
+    display: flex;
+    justify-content: center;
+    padding: 0.6rem 0;
+}
+
+.spark-footer-line-container {
+    display: flex;
+    justify-content: space-around;
+    padding: 0.6rem 0;
+    max-width: 65%;
+    border-bottom: 1px solid var(--spark-color-border);
+    margin: auto;
+}
+
+.spark-footer-element:visited {
+    color: var(--spark-color-text-muted);
+}
+
+.spark-footer-element {
+    margin-right: 11px;
+    color: var(--spark-color-text-muted);
+    text-decoration: none;
+}
+
+.spark-footer-container .spark-footer-element:not(:first-child) {
+    border-left: 1px solid var(--spark-color-border);
+    padding: 0 0 0 13px;
+}
+
+a#wap_dns {
+    display: none;
+}
+a#wap_nac {
+    display: none;
+}
+
+@media (max-width: 767px) {
+    .spark-footer-container {
+        flex-direction: column;
+    }
+    .spark-footer-container .spark-footer-element:not(:first-child) {
+        border-left: none;
+        padding: 0;
+        margin-top: 5px;
+    }
+}
diff --git a/intel_sphinx_theme/static/css/components/header/index-tb.css b/intel_sphinx_theme/static/css/components/header/index-tb.css
new file mode 100644
index 0000000..34a625a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/index-tb.css
@@ -0,0 +1,2 @@
+@import './properties-tb.css';
+@import './style-tb.css';
diff --git a/intel_sphinx_theme/static/css/components/header/index.css b/intel_sphinx_theme/static/css/components/header/index.css
new file mode 100644
index 0000000..132c4bf
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/index.css
@@ -0,0 +1,2 @@
+@import './style.css';
+@import './properties.css';
diff --git a/intel_sphinx_theme/static/css/components/header/properties-tb.css b/intel_sphinx_theme/static/css/components/header/properties-tb.css
new file mode 100644
index 0000000..b232b70
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/properties-tb.css
@@ -0,0 +1,110 @@
+[data-theme='light'] {
+    --spark-header-background: var(--spark-color-tb-theme-dark-gray100);
+    --spark-squares-header-background: var(--spark-color-tb-theme-dark-gray100);
+    --spark-header-color: var(--spark-color-white, #ffffff);
+    --spark-header-color-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
+        hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-filter-dropdown: brightness(0) saturate(100%) invert(30%) sepia(5%)
+        saturate(622%) hue-rotate(188deg) brightness(94%) contrast(96%);
+    --spark-header-color-active-item: var(--spark-color-aqua-tint2);
+    --spark-header-background-hover-button: var(--spark-color-tb-theme-dark-gray75, #070c21);
+    --spark-header-background-pressed-button: var(--spark-color-tb-theme-dark-gray50);
+    --spark-header-button-color-action: var(--spark-color-tb-theme-light-gray50, #ffffff);
+    --spark-header-gradient-color-start: var(--spark-color-cosmos-shade1);
+    --spark-header-gradient-color-center: #057aff;
+    --spark-header-gradient-color-end: var(--spark-color-aqua);
+    --spark-header-hover: var(--spark-color-cobalt-shade2);
+    --spark-header-hover-text: var(--spark-color-text-inverse);
+}
+
+[data-theme='dark'] {
+    --spark-header-background: var(--spark-color-tb-theme-dark-gray200);
+    --spark-squares-header-background: var(--spark-color-tb-theme-dark-gray200);
+    --spark-header-color: var(--spark-color-white, #ffffff);
+    --spark-header-color-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
+        hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-filter-dropdown: brightness(0) saturate(100%) invert(100%) sepia(0%)
+        saturate(7500%) hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-active-item: var(--spark-color-white, #ffffff);
+    --spark-header-background-hover-button: var(--spark-color-tb-theme-dark-gray75, #070c21);
+    --spark-header-button-color-action: var(--spark-color-tb-theme-dark-gray50);
+    --spark-header-gradient-color-start: var(--spark-color-cosmos-shade1);
+    --spark-header-gradient-color-center: #057aff;
+    --spark-header-gradient-color-end: var(--spark-color-aqua);
+    --spark-header-hover: var(--spark-color-cobalt-shade2);
+    --spark-header-hover-text: var(--spark-color-text-inverse);
+}
+
+[data-header='default'] {
+    --spark-header-item-line-height: 3.44em;
+}
+
+[data-theme='light'][data-header='default'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='default'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+[data-header='spark-color'] {
+    --spark-header-item-line-height: 3.32em;
+}
+
+[data-header='spark-color'][data-theme='light'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='spark-color'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+[data-header='spark-squares'] {
+    --spark-header-item-line-height: 3.875rem;
+    --spark-header-background: var(--spark-squares-header-background);
+    --spark-header-background-hover-button: rgba(0, 91, 133, 0.12);
+}
+
+[data-header='spark-squares'][data-theme='light'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='spark-squares'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+:root {
+    --spark-header-font-weight: 400;
+    --spark-header-font-size: 0.875rem;
+    --spark-header-margin-inline-start: 2rem;
+    --spark-header-margin-inline-end: 2rem;
+    --spark-header-shadow: 0.0625rem;
+    --spark-header-shadow-color: rgba(36, 37, 40, 0.1);
+    --spark-header-padding: 0.5rem;
+    --spark-header-border-bottom: 0.25rem;
+    --spark-header-project-font-weight: 500;
+    --spark-header-project-display: flex;
+    --spark-header-project-font-size: 1rem;
+    --spark-header-brand-padding: 0.5rem;
+    --spark-header-item-display: flex;
+    --spark-header-item-align-items: center;
+    --spark-header-item-block-size: 100%;
+    --spark-header-item-cursor: pointer;
+    --spark-header-item-font-weight: 400;
+    --spark-header-item-border-block-end: 2px solid transparent;
+    --spark-header-s-block-size: 3rem;
+    --spark-header-s-inline-size: 3rem;
+    --spark-header-s-line-height: 3rem;
+    --spark-header-m-block-size: 4rem;
+    --spark-header-m-inline-size: 4rem;
+    --spark-header-m-line-height: 4rem;
+    --spark-header-l-block-size: 5rem;
+    --spark-header-l-inline-size: 5rem;
+    --spark-header-l-line-height: 5rem;
+}
diff --git a/intel_sphinx_theme/static/css/components/header/properties.css b/intel_sphinx_theme/static/css/components/header/properties.css
new file mode 100644
index 0000000..e1db3d5
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/properties.css
@@ -0,0 +1,113 @@
+[data-theme='light'] {
+    --spark-header-background: var(--spark-color-classic-blue, #0054ae);
+    --spark-squares-header-background: var(--spark-color-classic-blue-shade1);
+    --spark-header-color: var(--spark-color-white, #ffffff);
+    --spark-header-color-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
+        hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-filter-dropdown: brightness(0) saturate(100%) invert(30%) sepia(5%)
+        saturate(622%) hue-rotate(188deg) brightness(94%) contrast(96%);
+    --spark-header-color-active-item: #a0ebff;
+    --spark-header-background-hover-button: var(--spark-color-classic-blue-tint1, #00377c);
+    --spark-header-background-pressed-button: var(--spark-color-classic-blue-tint2);
+    --spark-header-button-color-action: var(--spark-color-theme-light-gray50, #ffffff);
+    --spark-header-gradient-color-start: var(--spark-color-classic-blue-tint1);
+    --spark-header-gradient-color-center: var(--spark-color-moss-tint1);
+    --spark-header-gradient-color-end: var(--spark-color-moss);
+    --spark-header-hover: var(--spark-color-classic-blue-shade2);
+    --spark-header-hover-text: var(--spark-color-text-inverse);
+}
+
+[data-theme='dark'] {
+    --spark-header-background: var(--spark-color-theme-dark-gray50, #242528);
+    --spark-squares-header-background: var(--spark-color-classic-blue-shade2);
+    --spark-header-color: var(--spark-color-white, #ffffff);
+    --spark-header-color-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
+        hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-filter-dropdown: brightness(0) saturate(100%) invert(100%) sepia(0%)
+        saturate(7500%) hue-rotate(178deg) brightness(103%) contrast(103%);
+    --spark-header-color-active-item: var(--spark-color-white, #ffffff);
+    --spark-header-background-hover-button: var(--spark-color-theme-dark-gray200, #3c3e42);
+    --spark-header-button-color-action: var(--spark-color-theme-dark-gray50, #242528);
+    --spark-header-gradient-color-start: #1db0e2;
+    --spark-header-gradient-color-center: #4ca286;
+    --spark-header-gradient-color-end: #89ad4e;
+    --spark-header-hover: var(--spark-color-classic-blue);
+    --spark-header-hover-text: var(--spark-color-text-base);
+}
+
+[data-header='default'] {
+    --spark-header-item-line-height: 3.44em;
+    --spark-navbar-icon-color: var(--spark-color-secondary);
+}
+
+[data-theme='light'][data-header='default'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='default'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+[data-header='spark-color'] {
+    --spark-header-item-line-height: 3.32em;
+    --spark-navbar-icon-color: var(--spark-color-secondary);
+}
+
+[data-header='spark-color'][data-theme='light'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='spark-color'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+[data-header='spark-squares'] {
+    --spark-header-item-line-height: 3.875rem;
+    --spark-header-background: var(--spark-squares-header-background);
+    --spark-header-background-hover-button: rgba(0, 91, 133, 0.12);
+    --spark-navbar-icon-color: var(--spark-color-energy-blue-tint2);
+}
+
+[data-header='spark-squares'][data-theme='light'] {
+    --spark-color-button-field: var(--spark-color-header-background);
+    --spark-text-color-button-field: var(--spark-header-color);
+}
+
+[data-header='spark-squares'][data-theme='dark'] {
+    --spark-color-button-field: var(--spark-color-header-background);
+    --spark-text-color-button-field: var(--spark-color-text-base);
+}
+
+:root {
+    --spark-header-font-weight: 400;
+    --spark-header-font-size: 0.875rem;
+    --spark-header-margin-inline-start: 2rem;
+    --spark-header-margin-inline-end: 2rem;
+    --spark-header-shadow: 0.0625rem;
+    --spark-header-shadow-color: rgba(36, 37, 40, 0.1);
+    --spark-header-padding: 0.5rem;
+    --spark-header-border-bottom: 0.25rem;
+    --spark-header-project-font-weight: 500;
+    --spark-header-project-display: flex;
+    --spark-header-project-font-size: 1rem;
+    --spark-header-brand-padding: 0.5rem;
+    --spark-header-item-display: flex;
+    --spark-header-item-align-items: center;
+    --spark-header-item-block-size: 100%;
+    --spark-header-item-cursor: pointer;
+    --spark-header-item-font-weight: 400;
+    --spark-header-item-border-block-end: 2px solid transparent;
+    --spark-header-s-block-size: 3rem;
+    --spark-header-s-inline-size: 3rem;
+    --spark-header-s-line-height: 3rem;
+    --spark-header-m-block-size: 4rem;
+    --spark-header-m-inline-size: 4rem;
+    --spark-header-m-line-height: 4rem;
+    --spark-header-l-block-size: 5rem;
+    --spark-header-l-inline-size: 5rem;
+    --spark-header-l-line-height: 5rem;
+}
diff --git a/intel_sphinx_theme/static/css/components/header/style-tb.css b/intel_sphinx_theme/static/css/components/header/style-tb.css
new file mode 100644
index 0000000..4834c64
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/style-tb.css
@@ -0,0 +1,352 @@
+.navbar-brand img {
+    height: 80%;
+}
+
+.bd-header {
+    background: var(--spark-header-background) !important;
+    box-shadow: var(--spark-header-shadow) var(--spark-header-color-shadow);
+    height: 100%;
+    max-height: 6rem;
+    padding: 0;
+    display: block;
+}
+
+.bd-header #navbar-end,
+.bd-header #navbar-center {
+    gap: 1rem;
+}
+
+.bd-header #navbar-start {
+    gap: 2.5rem;
+}
+
+.bd-header .navbar-nav li a.nav-link {
+    color: var(--spark-header-color) !important;
+    line-height: var(--spark-header-item-line-height);
+}
+
+.bd-header .navbar-nav li a.nav-link.dropdown-item {
+    color: var(--pst-color-text-base) !important;
+}
+
+.bd-header .navbar-nav li a.nav-link.dropdown-item:hover {
+    color: var(--pst-color-text-white, white) !important;
+}
+
+.navbar-brand p,
+.bd-header ul.navbar-nav > li.nav-item.dropdown > .dropdown-toggle,
+.bd-header ul.navbar-nav > li.nav-item.dropdown > .dropdown-toggle:hover {
+    color: var(--spark-header-color);
+}
+
+
+.bd-header .navbar-nav li a.nav-link:hover {
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-hover);
+    color: var(--spark-header-hover-text);
+}
+
+.bd-header .navbar-nav li a.nav-link:active {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-pressed-button);
+}
+
+.bd-header .navbar-nav li a.nav-link:focus {
+    color: var(--spark-header-color);
+}
+
+.bd-header .navbar-nav > .active > .nav-link {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+}
+
+.bd-header .navbar-nav > .active > .nav-link:hover {
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-hover);
+    color: var(--spark-header-hover-text);
+}
+
+.bd-header .navbar-nav > .active > .nav-link:active {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-pressed-button);
+}
+
+.nav-item.current.active {
+    color: var(--spark-header-color);
+    border-bottom: var(--spark-header-border-bottom) solid var(--spark-header-color-active-item);
+}
+
+.bd-header .navbar-nav > .current > .nav-link {
+    border-bottom: none;
+}
+
+.bd-header .navbar-nav .dropdown button {
+    color: var(--spark-header-color);
+}
+
+.bd-header ul.navbar-nav > li.nav-item > .nav-link:hover:before {
+    border-bottom: none !important;
+}
+
+.bd-header ul.navbar-nav > li.nav-item.current > .nav-link:before {
+    border-bottom: none !important;
+}
+
+.bd-header .navbar-nav .dropdown .dropdown-menu {
+    border: 1px solid var(--spark-color-border);
+    box-shadow: 0 0 0.3rem 0.1rem var(--spark-color-shadow);
+    background-color: var(--spark-header-background);
+    padding: 0;
+}
+
+.toc-entry > .nav-link.active {
+    color: var(--spark-color-primary);
+    border-left: 2px solid var(--spark-color-primary);
+    font-weight: var(--spark-header-font-weight);
+}
+
+.nav-link.nav-external:after {
+    font-weight: var(--spark-header-font-weight);
+    content: var(--pst-icon-external-link);
+}
+
+.bd-header label.sidebar-toggle {
+    font-size: var(--pst-font-size-icon);
+    color: var(--spark--header-color);
+}
+
+#navbar-start {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+}
+
+.bd-header .spark-header-line {
+    width: 100%;
+    height: 10px;
+    background: rgb(0, 199, 253);
+    background: linear-gradient(
+        90deg,
+        var(--spark-header-gradient-color-start) 5%,
+        var(--spark-header-gradient-color-center) 50%,
+        var(--spark-header-gradient-color-end) 98.99%
+    );
+}
+
+[data-header='spark-squares'] .bd-header .bd-header__inner {
+    padding-left: 0;
+}
+
+.bd-header .spark-header-s1 {
+    width: 16px;
+    height: 4.6rem;
+    margin-right: 15px;
+    background-color: var(--spark-color-aqua);
+}
+
+.bd-header #spark-header-s2 {
+    width: 16px;
+    height: 16px;
+    position: absolute;
+    left: 0;
+    top: 4.6rem;
+    background-color: var(--spark-color-aqua-tint1);
+}
+
+.bd-header #spark-header-s3 {
+    width: 8px;
+    height: 8px;
+    position: absolute;
+    left: 1rem;
+    top: 5.6rem;
+    background-color: var(--spark-color-digital-classic-blue);
+}
+
+#spark-header-s2,
+#spark-header-s3 {
+    position: fixed;
+    background-color: var(--spark-header-background);
+    /* transition: top 0.3s; */
+}
+
+#spark-header-s2.hidden,
+#spark-header-s3.hidden {
+    top: -100px;
+}
+
+.bd-header .navbar-header-items {
+    position: absolute;
+    right: 0;
+    padding-left: 2.25rem;
+}
+
+.bd-header .navbar-nav > .active > .nav-link:hover {
+    text-decoration: none;
+}
+
+.bd-header .navbar-nav li a.nav-link:hover {
+    text-decoration: none;
+}
+
+.bd-header #navbar-end {
+    display: flex;
+    margin-left: auto;
+    margin-right: 1rem;
+    align-items: center;
+}
+
+.search-button-field,
+.header-button,
+.version-switcher__menu.dropdown-menu,
+header button.btn.version-switcher__button {
+    color: var(--spark-text-color-button-field);
+    border: none;
+    background: none;
+    border-radius: 0;
+    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
+}
+
+.version-switcher__menu.dropdown-menu,
+header button.btn.version-switcher__button {
+    border-radius: 0;
+    border-color: var(--spark-text-color-button-field);
+    border-width: 1px;
+    border-style: solid;
+    margin-bottom: 0;
+}
+
+.search-button-field:hover,
+.header-button:hover,
+.version-switcher__menu.dropdown-menu:hover,
+header button.btn.version-switcher__button:hover {
+    background-color: var(--pst-color-surface);
+    box-shadow: 0 0 0 0.1875rem var(--pst-color-link-hover);
+    color: var(--spark-color-text-base) !important;
+}
+
+.header-button:hover > span::before {
+    color: var(--spark-color-text-base);
+}
+
+kbd {
+    background-color: var(--spark-color-button-field);
+    color: var(--spark-text-color-button-field);
+}
+
+.search-button-field kbd:not(.compound) {
+    border-color: var(--spark-text-color-button-field);
+}
+
+.search-button-field:hover kbd {
+    background-color: transparent;
+    color: var(--spark-color-text-base);
+    border-color: var(--spark-color-text-base);
+}
+
+.pst-navbar-icon {
+    color: var(--spark-text-color-button-field) !important;
+}
+
+.pst-navbar-icon:hover {
+    color: var(--spark-navbar-icon-color) !important;
+}
+
+html .pst-navbar-icon:hover:before{
+    border-bottom: none;
+}
+
+@media (max-width: 960px) {
+    .bd-header .navbar-header-items {
+        right: 2rem;
+        padding-left: 2.25rem;
+    }
+
+    .bd-sidebar-primary .nav-link:focus {
+        color: var(--spark-color-text-base) !important;
+    }
+
+    /*
+    a.navbar-brand.logo {
+        margin-left: 1rem;
+    }*/
+    .nav-item.current.active {
+        border-bottom: var(--spark-header-border-bottom) solid var(--spark-header-color-active-item);
+    }
+
+    ul.navbar-nav li a:hover {
+        text-decoration: none;
+    }
+}
+
+@media (min-width: 1178px) {
+    .navbar-header-items__end {
+        margin-right: 3rem !important;
+    }
+}
+
+.bd-header label.sidebar-toggle {
+    color: var(--spark-color-sidebar-toggle);
+}
+
+@media (min-width: 962px) {
+    .bd-header label.sidebar-toggle {
+        display: none;
+    }
+
+    .search-button-field,
+    .header-button {
+        /* add border once we're out of mobile */
+        border-radius: 0;
+        border-color: var(--spark-text-color-button-field);
+        border-width: 1px;
+        border-style: solid;
+    }
+}
+
+/* Icon replace */
+
+.nav-link.nav-external:after {
+    font-family: 'spark-icon';
+    font-size: 12px;
+    content: '\f1a4';
+    font-weight: 400;
+    display: inline-block;
+}
+
+/* Add here data-mode = dark when there is a moon icon */
+html[data-mode='light'] .theme-switch-button .theme-switch[data-mode='light'],
+html[data-mode='auto'] .theme-switch-button .theme-switch[data-mode='auto'] {
+    display: none;
+}
+
+html[data-mode='light'] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f23b';
+    margin-top: auto;
+}
+
+/* Add here moon icon */
+/* html[data-mode=dark] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '';
+} */
+
+html[data-mode='auto'] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f23a';
+    margin-top: auto;
+}
+
+.header-button {
+    padding-top: 3px;
+    font-size: 1.5rem; /* 24px */
+    display: inline-flex;
+    align-items: center;
+    height: 42px;
+    width: 42px;
+}
diff --git a/intel_sphinx_theme/static/css/components/header/style.css b/intel_sphinx_theme/static/css/components/header/style.css
new file mode 100644
index 0000000..d688b42
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/header/style.css
@@ -0,0 +1,349 @@
+.navbar-brand img {
+    height: 80%;
+}
+
+.bd-header {
+    background: var(--spark-header-background) !important;
+    box-shadow: var(--spark-header-shadow) var(--spark-header-color-shadow);
+    height: 100%;
+    max-height: 6rem;
+    padding: 0;
+    display: block;
+}
+
+.bd-header #navbar-end,
+.bd-header #navbar-center {
+    gap: 1rem;
+}
+
+.bd-header #navbar-start {
+    gap: 2.5rem;
+}
+
+.bd-header .navbar-nav li a.nav-link {
+    color: var(--spark-header-color);
+    line-height: var(--spark-header-item-line-height);
+}
+
+.navbar-brand p,
+.bd-header ul.navbar-nav > li.nav-item.dropdown > .dropdown-toggle,
+.bd-header ul.navbar-nav > li.nav-item.dropdown > .dropdown-toggle:hover {
+    color: var(--spark-header-color);
+}
+
+.bd-header .navbar-nav li a.nav-link:hover {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-hover-button);
+}
+
+.bd-header .navbar-nav li a.nav-link:active {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-pressed-button);
+}
+
+.bd-header .navbar-nav li a.nav-link:focus {
+    color: var(--spark-header-color);
+}
+
+.bd-header .navbar-nav > .active > .nav-link {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+}
+
+.bd-header .navbar-nav > .active > .nav-link:hover {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-hover-button);
+}
+
+.bd-header .navbar-nav > .active > .nav-link:active {
+    color: var(--spark-header-color);
+    font-weight: var(--spark-header-font-weight);
+    background-color: var(--spark-header-background-pressed-button);
+}
+
+.nav-item.current.active {
+    color: var(--spark-header-color);
+    border-bottom: var(--spark-header-border-bottom) solid var(--spark-header-color-active-item);
+}
+
+.bd-header .navbar-nav > .current > .nav-link {
+    border-bottom: none;
+}
+
+.bd-header .navbar-nav .dropdown button {
+    color: var(--spark-header-color);
+}
+
+.bd-header ul.navbar-nav > li.nav-item.current > .nav-link {
+    color: var(--spark-header-color);
+}
+
+.bd-header ul.navbar-nav > li.nav-item > .nav-link {
+    color: var(--spark-header-color);
+}
+
+.bd-header ul.navbar-nav > li.nav-item > .nav-link:hover {
+    background-color: var(--spark-header-hover);
+    color: var(--spark-header-hover-text);
+}
+
+.bd-header ul.navbar-nav > li.nav-item > .nav-link:hover:before {
+    border-bottom: none !important;
+}
+
+.bd-header ul.navbar-nav > li.nav-item.current > .nav-link:before {
+    border-bottom: none !important;
+}
+
+.bd-header .navbar-nav .dropdown .dropdown-menu {
+    border: 1px solid var(--spark-color-border);
+    box-shadow: 0 0 0.3rem 0.1rem var(--spark-color-shadow);
+    background-color: var(--spark-header-background);
+    padding: 0;
+}
+
+.toc-entry > .nav-link.active {
+    color: var(--spark-color-primary);
+    border-left: 2px solid var(--spark-color-primary);
+    font-weight: var(--spark-header-font-weight);
+}
+
+.bd-header label.sidebar-toggle {
+    font-size: var(--pst-font-size-icon);
+    color: var(--spark--header-color);
+}
+
+#navbar-start {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+}
+
+.bd-header .spark-header-line {
+    width: 100%;
+    height: 10px;
+    background: rgb(0, 199, 253);
+    background: linear-gradient(
+        90deg,
+        var(--spark-header-gradient-color-start) 43.96%,
+        var(--spark-header-gradient-color-center) 76.55%,
+        var(--spark-header-gradient-color-end) 98.99%
+    );
+}
+
+[data-header='spark-squares'] .bd-header .bd-header__inner {
+    padding-left: 0;
+}
+
+.bd-header .spark-header-s1 {
+    width: 16px;
+    height: 4.6rem;
+    margin-right: 15px;
+    background-color: var(--spark-color-primary);
+}
+
+.bd-header #spark-header-s2 {
+    width: 16px;
+    height: 16px;
+    position: absolute;
+    left: 0;
+    top: 4.6rem;
+    background-color: var(--spark-color-classic-blue-shade2);
+}
+
+.bd-header #spark-header-s3 {
+    width: 8px;
+    height: 8px;
+    position: absolute;
+    left: 1rem;
+    top: 5.6rem;
+    background-color: var(--spark-color-digital-classic-blue);
+}
+
+#spark-header-s2,
+#spark-header-s3 {
+    position: fixed;
+    background-color: var(--spark-header-background);
+    /* transition: top 0.3s; */
+}
+
+#spark-header-s2.hidden,
+#spark-header-s3.hidden {
+    top: -100px;
+}
+
+.bd-header .navbar-header-items {
+    position: absolute;
+    right: 0;
+    padding-left: 2.25rem;
+}
+
+.bd-header .navbar-nav > .active > .nav-link:hover {
+    text-decoration: none;
+}
+
+.bd-header .navbar-nav li a.nav-link:hover {
+    text-decoration: none;
+}
+
+.bd-header #navbar-end {
+    display: flex;
+    margin-left: auto;
+    margin-right: 1rem;
+    align-items: center;
+}
+
+.search-button-field,
+.header-button,
+.version-switcher__menu.dropdown-menu,
+header button.btn.version-switcher__button {
+    color: var(--spark-text-color-button-field) !important;
+    border: none;
+    background: none;
+    border-radius: 0;
+    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
+}
+
+.version-switcher__menu.dropdown-menu,
+header button.btn.version-switcher__button {
+    border-color: var(--spark-text-color-button-field) !important;
+    border-width: 1px;
+    border-style: solid;
+    margin-bottom: 0;
+}
+
+.search-button-field:hover,
+.header-button:hover,
+.version-switcher__menu.dropdown-menu:hover,
+header button.btn.version-switcher__button:hover {
+    background-color: var(--pst-color-surface) !important;
+    box-shadow: 0 0 0 0.1875rem var(--pst-color-link-hover);
+    color: var(--spark-color-text-base) !important;
+}
+
+.header-button:hover > span::before {
+    color: var(--spark-color-text-base);
+}
+
+kbd {
+    background-color: var(--spark-color-button-field);
+    color: var(--spark-text-color-button-field);
+}
+
+.search-button-field kbd:not(.compound) {
+    border-color: var(--spark-text-color-button-field);
+}
+
+.search-button-field:hover kbd {
+    background-color: transparent;
+    color: var(--spark-color-text-base);
+    border-color: var(--spark-color-text-base);
+}
+
+.pst-navbar-icon {
+    color: var(--spark-text-color-button-field) !important;
+}
+
+.pst-navbar-icon:hover {
+    color: var(--spark-navbar-icon-color) !important;
+}
+
+html .pst-navbar-icon:hover:before{
+    border-bottom: none;
+}
+
+@media (max-width: 960px) {
+    .bd-header .navbar-header-items {
+        right: 2rem;
+        padding-left: 2.25rem;
+    }
+
+    .bd-sidebar-primary .nav-link:focus {
+        color: var(--spark-color-text-base) !important;
+    }
+    /*
+    a.navbar-brand.logo {
+        margin-left: 1rem;
+    }*/
+
+    .nav-item.current.active {
+        border-bottom: var(--spark-header-border-bottom) solid var(--spark-color-primary);
+    }
+
+    ul.navbar-nav li a:hover {
+        text-decoration: none;
+    }
+}
+
+@media (min-width: 1178px) {
+    .navbar-header-items__end {
+        margin-right: 3rem !important;
+    }
+}
+
+.bd-header label.sidebar-toggle {
+    color: var(--spark-color-sidebar-toggle);
+}
+
+@media (min-width: 962px) {
+    .bd-header label.sidebar-toggle {
+        display: none;
+    }
+    .search-button-field,
+    .header-button {
+        /* add border once we're out of mobile */
+        border-radius: 0;
+        border-color: var(--spark-text-color-button-field);
+        border-width: 1px;
+        border-style: solid;
+    }
+}
+
+/* Icon replace */
+
+.nav-link.nav-external:after {
+    font-family: 'spark-icon';
+    font-size: 12px;
+    content: '\f1a4';
+    font-weight: 400;
+    display: inline-block;
+}
+
+/* Add here data-mode = dark when there is a moon icon */
+html[data-mode='light'] .theme-switch-button .theme-switch[data-mode='light'],
+html[data-mode='auto'] .theme-switch-button .theme-switch[data-mode='auto'] {
+    display: none;
+}
+
+html[data-mode='light'] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f23b';
+    margin-top: auto;
+}
+
+/* Add here moon icon */
+/* html[data-mode=dark] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '';
+} */
+
+html[data-mode='auto'] .pst-navbar-icon:before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f23a';
+    margin-top: auto;
+}
+
+.header-button {
+    padding-top: 3px;
+    font-size: 1.5rem; /* 24px */
+    display: inline-flex;
+    align-items: center;
+    height: 42px;
+    width: 42px;
+}
diff --git a/intel_sphinx_theme/static/css/components/index-tb.css b/intel_sphinx_theme/static/css/components/index-tb.css
new file mode 100644
index 0000000..b21998a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/index-tb.css
@@ -0,0 +1,11 @@
+/* @import './admonitions/index.css'; */
+@import './footer/index.css';
+@import './header/index-tb.css';
+@import './sidebar-primary/index.css';
+@import './sidebar-secondary/index.css';
+/* @import './table/index.css'; */
+@import './text/index.css';
+@import './toctree/index.css';
+@import './typography/index.css';
+@import './version-switcher-dropdown/index.css';
+@import './sphinx-design/index.css';
diff --git a/intel_sphinx_theme/static/css/components/index.css b/intel_sphinx_theme/static/css/components/index.css
new file mode 100644
index 0000000..2272547
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/index.css
@@ -0,0 +1,11 @@
+/* @import './admonitions/index.css'; */
+@import './footer/index.css';
+@import './header/index.css';
+@import './sidebar-primary/index.css';
+@import './sidebar-secondary/index.css';
+/* @import './table/index.css'; */
+@import './text/index.css';
+@import './toctree/index.css';
+@import './typography/index.css';
+@import './version-switcher-dropdown/index.css';
+@import './sphinx-design/index.css';
diff --git a/intel_sphinx_theme/static/css/components/sidebar-primary/index.css b/intel_sphinx_theme/static/css/components/sidebar-primary/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sidebar-primary/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/sidebar-primary/style.css b/intel_sphinx_theme/static/css/components/sidebar-primary/style.css
new file mode 100644
index 0000000..26a5d25
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sidebar-primary/style.css
@@ -0,0 +1,69 @@
+.bd-sidebar-primary {
+    /* max-height: calc(100vh - var(--pst-header-height)); */
+    /* top: var(--pst-header-height); */
+    border-right: none;
+    background-color: var(--spark-color-layer1);
+    /* font-size: var(--pst-sidebar-font-size-mobile); */
+}
+
+/* .bd-sidebar-primary .nav-link {
+    font-size: var(--pst-sidebar-font-size-mobile);
+} */
+
+.bd-sidebar-primary h1,
+.bd-sidebar-primary h2,
+.bd-sidebar-primary h3,
+.bd-sidebar-primary h4 {
+    color: var(--spark-color-text-base);
+}
+
+.bd-sidebar-primary .sidebar-header-items .sidebar-header-items__title {
+    /* font-weight: var(--pst-sidebar-header-font-weight);
+    font-size: var(--pst-sidebar-header-font-size); */
+    color: var(--spark-color-text-base);
+}
+
+/* .bd-sidebar-primary .sidebar-start-items {
+    border-top: 1px solid var(--spark-color-border);
+} */
+
+.bd-sidebar-primary label.toctree-toggle:hover {
+    background: var(--pst-color-surface);
+}
+
+.bd-sidebar-primary label.toctree-toggle i:hover {
+    color: var(--spark-color-primary);
+}
+
+nav.bd-links li > a {
+    color: var(--spark-color-text-muted);
+}
+
+nav.bd-links li > a:hover {
+    color: var(--spark-color-primary);
+}
+
+nav.bd-links .active > a,
+nav.bd-links .active:hover > a {
+    color: var(--spark-color-primary);
+}
+
+nav.bd-links p.caption {
+    /* font-weight: var(--pst-sidebar-header-font-weight); */
+    color: var(--spark-color-text-base);
+    font-size: var(--spark-font-size-300);
+    margin-bottom: 0px;
+    /* font-size: var(--pst-sidebar-font-size-mobile); */
+}
+
+.bd-sidebar-primary div#rtd-footer-container {
+    position: fixed;
+}
+
+.bd-sidebar-primary .sidebar-end-items {
+    position: fixed;
+}
+
+nav.bd-links ul {
+    padding-right: 1rem;
+}
diff --git a/intel_sphinx_theme/static/css/components/sidebar-secondary/index.css b/intel_sphinx_theme/static/css/components/sidebar-secondary/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sidebar-secondary/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/sidebar-secondary/style.css b/intel_sphinx_theme/static/css/components/sidebar-secondary/style.css
new file mode 100644
index 0000000..73326fb
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sidebar-secondary/style.css
@@ -0,0 +1,21 @@
+.bd-sidebar-secondary {
+    /* top: var(--pst-header-height); */
+    /* max-height: calc(100vh - var(--pst-header-height));
+    font-size: var(--pst-sidebar-font-size-mobile); */
+    /* width: var(--pst-sidebar-secondary); */
+    background-color: var(--spark-color-background);
+}
+
+/* .nav-link {
+    font-size: var(--pst-sidebar-font-size-mobile);
+    font-size: var(--pst-sidebar-font-size);
+} */
+
+.onthispage {
+    color: var(--spark-color-text-base);
+    /* font-weight: var(--pst-sidebar-header-font-weight); */
+}
+
+.toc-item {
+    border-left: 1px solid var(--spark-color-border);
+}
diff --git a/intel_sphinx_theme/static/css/components/sphinx-design/button.css b/intel_sphinx_theme/static/css/components/sphinx-design/button.css
new file mode 100644
index 0000000..30494be
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sphinx-design/button.css
@@ -0,0 +1,20 @@
+/* Button defaults */
+/* .sd-btn {
+    color: var(--spark-color-text-inverse);
+} */
+
+.sd-btn-outline-warning {
+    color: var(--sd-color-warning-text-outline) !important;
+}
+
+.sd-btn-outline-secondary {
+    color: var(--sd-color-secondary-text-outline) !important;
+}
+
+[class*='sd-btn-outline-'] {
+    border-width: var(--sd-button-border-width, 2px) !important;
+}
+
+[class*='sd-btn-outline-']:hover {
+    border-width: var(--sd-button-border-width, 2px) !important;
+}
diff --git a/intel_sphinx_theme/static/css/components/sphinx-design/index.css b/intel_sphinx_theme/static/css/components/sphinx-design/index.css
new file mode 100644
index 0000000..3b8f549
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sphinx-design/index.css
@@ -0,0 +1,2 @@
+@import './properties.css';
+@import './button.css';
diff --git a/intel_sphinx_theme/static/css/components/sphinx-design/properties.css b/intel_sphinx_theme/static/css/components/sphinx-design/properties.css
new file mode 100644
index 0000000..84558c5
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/sphinx-design/properties.css
@@ -0,0 +1,144 @@
+:root {
+    --sd-button-border-width: 2px;
+}
+
+html[data-theme='light'] {
+    --sd-color-primary: var(--pst-color-primary);
+    --sd-color-secondary: var(--pst-color-secondary);
+    --sd-color-success: var(--pst-color-success);
+    --sd-color-info: var(--pst-color-info);
+    --sd-color-warning: var(--pst-color-warning);
+    --sd-color-danger: var(--pst-color-danger);
+    --sd-color-light: var(--pst-color-light);
+    --sd-color-muted: var(--pst-color-muted);
+    --sd-color-dark: var(--pst-color-dark);
+    --sd-color-primary-highlight: var(--pst-color-primary-highlight);
+    --sd-color-secondary-highlight: var(--pst-color-secondary-highlight);
+    --sd-color-success-highlight: var(--pst-color-success-highlight);
+    --sd-color-info-highlight: var(--pst-color-info-highlight);
+    --sd-color-warning-highlight: var(--pst-color-warning-highlight);
+    --sd-color-danger-highlight: var(--pst-color-danger-highlight);
+    --sd-color-light-highlight: var(--pst-color-light-highlight);
+    --sd-color-muted-highlight: var(--pst-color-muted-highlight);
+    --sd-color-dark-highlight: var(--pst-color-dark-highlight);
+    --sd-color-primary-text: var(--pst-color-primary-text);
+    --sd-color-secondary-text: var(--pst-color-secondary-text);
+    --sd-color-secondary-text-outline: var(--pst-color-text-base);
+    --sd-color-success-text: var(--pst-color-success-text);
+    --sd-color-info-text: var(--pst-color-info-text);
+    --sd-color-warning-text: var(--pst-color-warning-text);
+    --sd-color-warning-text-outline: hsl(from var(--pst-color-warning) h s 25%);
+    --sd-color-danger-text: var(--pst-color-danger-text);
+    --sd-color-light-text: var(--pst-color-light-text);
+    --sd-color-muted-text: var(--pst-color-muted-text);
+    --sd-color-dark-text: var(--pst-color-dark-text);
+    --sd-color-primary-bg: var(--pst-color-primary);
+    --sd-color-primary-bg-text: var(--pst-color-primary-text);
+
+    --sd-color-shadow: var(--pst-color-shadow);
+    --sd-color-card-border: var(--pst-color-border);
+    --sd-color-card-border-hover: var(--pst-color-primary-highlight);
+    --sd-color-card-background: var(--pst-color-surface);
+    --sd-color-card-text: var(--pst-color-text-base);
+    --sd-color-card-header: var(--pst-color-surface);
+    --sd-color-card-footer: var(--pst-color-surface);
+    --sd-color-tabs-label-active: var(--pst-color-primary-highlight);
+    --sd-color-tabs-label-hover: var(--pst-color-primary-highlight);
+    --sd-color-tabs-label-inactive: var(--pst-color-muted);
+    --sd-color-tabs-underline-active: var(--pst-color-primary-highlight);
+    --sd-color-tabs-underline-hover: var(--pst-color-primary-highlight);
+    --sd-color-tabs-underline-inactive: transparent;
+    --sd-color-tabs-overline: var(--pst-color-border);
+    --sd-color-tabs-underline: var(--pst-color-border);
+    --sd-fontsize-tabs-label: 1rem;
+    --sd-fontsize-dropdown-title: 1rem;
+    --sd-fontweight-dropdown-title: 500;
+
+    --sd-color-primary-bg: var(--pst-color-primary-bg);
+    --sd-color-primary-bg-text: var(--pst-color-text-base);
+    --sd-color-secondary-bg: var(--pst-color-secondary-bg);
+    --sd-color-secondary-bg-text: var(--spark-color-text-base);
+    --sd-color-success-bg: var(--pst-color-success-bg);
+    --sd-color-success-bg-text: var(--pst-color-success-text);
+    --sd-color-info-bg: var(--pst-color-info-bg);
+    --sd-color-info-bg-text: var(--pst-color-info-text);
+    --sd-color-warning-bg: var(--pst-color-warning-bg);
+    --sd-color-warning-bg-text: var(--pst-color-warning-text);
+    --sd-color-danger-bg: var(--pst-color-danger-bg);
+    --sd-color-danger-bg-text: var(--pst-color-danger-text);
+    --sd-color-light-bg: var(--pst-color-light-bg);
+    --sd-color-light-bg-text: var(--pst-color-light-text);
+    --sd-color-muted-bg: var(--pst-color-muted-bg);
+    --sd-color-muted-bg-text: var(--pst-color-muted-text);
+    --sd-color-dark-bg: var(--pst-color-dark-bg);
+    --sd-color-dark-bg-text: var(--pst-color-dark-text);
+}
+
+html[data-theme='dark'] {
+    --sd-color-primary: var(--pst-color-primary);
+    --sd-color-secondary: var(--pst-color-secondary);
+    --sd-color-success: var(--pst-color-success);
+    --sd-color-info: var(--pst-color-info);
+    --sd-color-warning: var(--pst-color-warning);
+    --sd-color-danger: var(--pst-color-danger);
+    --sd-color-light: var(--pst-color-light);
+    --sd-color-muted: var(--pst-color-muted);
+    --sd-color-dark: var(--pst-color-dark);
+    --sd-color-primary-highlight: var(--pst-color-primary-highlight);
+    --sd-color-secondary-highlight: var(--pst-color-secondary-highlight);
+    --sd-color-success-highlight: var(--pst-color-success-highlight);
+    --sd-color-info-highlight: var(--pst-color-info-highlight);
+    --sd-color-warning-highlight: var(--pst-color-warning-highlight);
+    --sd-color-danger-highlight: var(--pst-color-danger-highlight);
+    --sd-color-light-highlight: var(--pst-color-light-highlight);
+    --sd-color-muted-highlight: var(--pst-color-muted-highlight);
+    --sd-color-dark-highlight: var(--pst-color-dark-highlight);
+    --sd-color-primary-text: var(--pst-color-primary-text);
+    --sd-color-secondary-text: var(--pst-color-secondary-text);
+    --sd-color-secondary-text-outline: var(--pst-color-secondary);
+    --sd-color-success-text: var(--pst-color-success-text);
+    --sd-color-info-text: var(--pst-color-info-text);
+    --sd-color-warning-text: var(--pst-color-warning-text);
+    --sd-color-warning-text-outline: var(--pst-color-warning);
+    --sd-color-danger-text: var(--pst-color-danger-text);
+    --sd-color-light-text: var(--pst-color-light-text);
+    --sd-color-muted-text: var(--pst-color-muted-text);
+    --sd-color-dark-text: var(--pst-color-dark-text);
+    --sd-color-shadow: var(--pst-color-shadow);
+    --sd-color-card-border: var(--pst-color-border);
+    --sd-color-card-border-hover: var(--pst-color-primary-highlight);
+    --sd-color-card-background: var(--pst-color-surface);
+    --sd-color-card-text: var(--pst-color-text-base);
+    --sd-color-card-header: var(--pst-color-surface);
+    --sd-color-card-footer: var(--pst-color-surface);
+    --sd-color-tabs-label-active: var(--pst-color-primary-highlight);
+    --sd-color-tabs-label-hover: var(--pst-color-primary-highlight);
+    --sd-color-tabs-label-inactive: var(--pst-color-muted);
+    --sd-color-tabs-underline-active: var(--pst-color-primary-highlight);
+    --sd-color-tabs-underline-hover: var(--pst-color-primary-highlight);
+    --sd-color-tabs-underline-inactive: transparent;
+    --sd-color-tabs-overline: var(--pst-color-border);
+    --sd-color-tabs-underline: var(--pst-color-border);
+    --sd-fontsize-tabs-label: 1rem;
+    --sd-fontsize-dropdown-title: 1rem;
+    --sd-fontweight-dropdown-title: 500;
+
+    --sd-color-primary-bg: var(--pst-color-primary-bg);
+    --sd-color-primary-bg-text: var(--pst-color-text-base);
+    --sd-color-secondary-bg: var(--pst-color-secondary-bg);
+    --sd-color-secondary-bg-text: var(--pst-color-text-base);
+    --sd-color-success-bg: var(--pst-color-success-bg);
+    --sd-color-success-bg-text: var(--pst-color-success-text);
+    --sd-color-info-bg: var(--pst-color-info-bg);
+    --sd-color-info-bg-text: var(--pst-color-info-text);
+    --sd-color-warning-bg: var(--pst-color-warning-bg);
+    --sd-color-warning-bg-text: var(--pst-color-warning-text);
+    --sd-color-danger-bg: var(--pst-color-danger-bg);
+    --sd-color-danger-bg-text: var(--pst-color-danger-text);
+    --sd-color-light-bg: var(--pst-color-light-bg);
+    --sd-color-light-bg-text: var(--pst-color-light-text);
+    --sd-color-muted-bg: var(--pst-color-muted-bg);
+    --sd-color-muted-bg-text: var(--pst-color-muted-text);
+    --sd-color-dark-bg: var(--pst-color-dark-bg);
+    --sd-color-dark-bg-text: var(--pst-color-dark-text);
+}
diff --git a/intel_sphinx_theme/static/css/components/table/index.css b/intel_sphinx_theme/static/css/components/table/index.css
new file mode 100644
index 0000000..7f0ba81
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/table/index.css
@@ -0,0 +1,2 @@
+@import './properties.css';
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/table/properties.css b/intel_sphinx_theme/static/css/components/table/properties.css
new file mode 100644
index 0000000..aa6eb6f
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/table/properties.css
@@ -0,0 +1,24 @@
+[data-theme='light'] {
+    --spark-table-head-background-color: var(--spark-color-theme-light-gray75, #f9f9f9);
+    --spark-table-row-normal-background-color: var(--spark-color-theme-light-gray50, #ffffff);
+    --spark-table-row-normal-border: rgba(43, 44, 48, 0.12);
+    --spark-table-head-normal-border: rgba(43, 44, 48, 0.34);
+    --spark-table-head-color: var(--spark-color-theme-light-gray900, #2b2c30);
+    --spark-color-table-row-zebra-hover-bg: #040e3580; /*cobalt shade3 (secondary color with 80 opacity*/
+}
+
+[data-theme='dark'] {
+    --spark-table-head-background-color: var(--spark-color-theme-dark-gray75, #2e2f32);
+    --spark-table-row-normal-background-color: var(--spark-color-theme-dark-gray50, #242528);
+    --spark-table-row-normal-border: rgba(255, 255, 255, 0.12);
+    --spark-table-head-normal-border: rgba(255, 255, 255, 0.34);
+    --spark-table-head-color: var(--spark-color-theme-dark-gray900, #ffffff);
+    --spark-color-table-row-zebra-hover-bg: var(--spark-color-secondary);
+}
+
+:root {
+    --spark-table-box-shadow-x: 0rem;
+    --spark-table-box-shadow-y: -0.0625rem;
+    --spark-table-box-shadow-blur-radius: 0rem;
+    --spark-table-border: 0.0625rem;
+}
diff --git a/intel_sphinx_theme/static/css/components/table/style.css b/intel_sphinx_theme/static/css/components/table/style.css
new file mode 100644
index 0000000..b8ade0a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/table/style.css
@@ -0,0 +1,30 @@
+.table tr {
+    box-shadow: inset var(--spark-table-box-shadow-x) var(--spark-table-box-shadow-y)
+        var(--spark-table-box-shadow-blur-radius) var(--spark-table-row-normal-border);
+    background-color: var(--spark-table-row-normal-background-color);
+}
+
+.table thead th {
+    color: var(--spark-table-head-color);
+    box-shadow: inset var(--spark-table-box-shadow-x) var(--spark-table-box-shadow-y)
+        var(--spark-table-box-shadow-blur-radius) var(--spark-table-head-normal-border);
+    background-color: var(--spark-table-head-background-color);
+}
+
+.table td,
+.table thead th {
+    border-top: 0;
+    border-bottom: 0;
+}
+
+td ul li,
+dt {
+    color: var(--spark-color-text-base);
+}
+.table tbody tr:hover {
+    background-color: var(--spark-color-table-row-zebra-hover-bg);
+}
+
+:root[data-theme='dark'] .table {
+    color: var(--spark-color-text-base);
+}
diff --git a/intel_sphinx_theme/static/css/components/text/index.css b/intel_sphinx_theme/static/css/components/text/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/text/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/text/style.css b/intel_sphinx_theme/static/css/components/text/style.css
new file mode 100644
index 0000000..1782640
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/text/style.css
@@ -0,0 +1,7 @@
+[data-theme='light'] {
+    --spark-text-disabled-color: var(--spark-color-theme-light-gray600, #8b8e97);
+}
+
+[data-theme='dark'] {
+    --spark-text-disabled-color: var(--spark-color-theme-dark-gray600, #8e9099);
+}
diff --git a/intel_sphinx_theme/static/css/components/themed-image/index.css b/intel_sphinx_theme/static/css/components/themed-image/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/themed-image/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/themed-image/style.css b/intel_sphinx_theme/static/css/components/themed-image/style.css
new file mode 100644
index 0000000..7e92480
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/themed-image/style.css
@@ -0,0 +1,8 @@
+.themed-image img {
+    display: none;
+}
+
+html[data-theme='light'] .themed-image img:first-child,
+html[data-theme='dark'] .themed-image img:last-child {
+    display: inline-block;
+}
diff --git a/intel_sphinx_theme/static/css/components/toctree/index.css b/intel_sphinx_theme/static/css/components/toctree/index.css
new file mode 100644
index 0000000..132c4bf
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/toctree/index.css
@@ -0,0 +1,2 @@
+@import './style.css';
+@import './properties.css';
diff --git a/intel_sphinx_theme/static/css/components/toctree/properties.css b/intel_sphinx_theme/static/css/components/toctree/properties.css
new file mode 100644
index 0000000..51ea0fa
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/toctree/properties.css
@@ -0,0 +1,27 @@
+[data-theme='light'] {
+    --spark-list-color: var(--spark-color-theme-light-gray900, #2b2c30);
+    --spark-list-color-active: var(--spark-color-classic-blue, #0054ae);
+    --spark-list-color-disabled: rgba(43, 44, 48, 0.34);
+    --spark-list-divider-color: rgba(43, 44, 48, 0.12);
+    --spark-list-background-color: transparent;
+    --spark-list-background-zebra-color: rgba(43, 44, 48, 0.02);
+    --spark-list-background-hover: var(--spark-color-theme-light-gray300, #e9eaeb);
+    --spark-list-background-active: rgba(43, 44, 48, 0.03);
+    --spark-list-background-active-hover: rgba(43, 44, 48, 0.06);
+    --spark-list-item-focused-b-g: var(--spark-color-classic-blue-shade1, #00377c);
+    --spark-list-item-color-focused: var(--spark-color-theme-light-gray50, #ffffff);
+}
+
+[data-theme='dark'] {
+    --spark-list-color: var(--spark-color-theme-dark-gray900, #ffffff);
+    --spark-list-color-active: var(--spark-color-energy-blue, #00c7fd);
+    --spark-list-color-disabled: rgba(255, 255, 255, 0.34);
+    --spark-list-divider-color: rgba(255, 255, 255, 0.12);
+    --spark-list-background-color: var(--spark-list-background-color, transparent);
+    --spark-list-background-zebra-color: rgba(255, 255, 255, 0.02);
+    --spark-list-background-hover: var(--spark-color-theme-dark-gray300);
+    --spark-list-background-active: rgba(255, 255, 255, 0.03);
+    --spark-list-background-active-hover: rgba(255, 255, 255, 0.06);
+    --spark-list-item-focused-b-g: #6ddcff;
+    --spark-list-item-color-focused: #242528;
+}
diff --git a/intel_sphinx_theme/static/css/components/toctree/style.css b/intel_sphinx_theme/static/css/components/toctree/style.css
new file mode 100644
index 0000000..5c1168e
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/toctree/style.css
@@ -0,0 +1,38 @@
+/** * Style the toctree component in pages (avoid modifying the navbars) */
+.toctree-wrapper p.caption {
+    font-size: 1.5em;
+    margin-bottom: 0em;
+}
+.toctree-wrapper > ul {
+    padding-left: 0;
+}
+.toctree-wrapper li[class^='toctree-l'] {
+    list-style: none;
+    margin-bottom: 0.2em;
+}
+.toctree-wrapper li[class^='toctree-l'] > a {
+    list-style: none;
+    font-size: 1.1em;
+}
+.toctree-wrapper li[class^='toctree-l'] > ul {
+    list-style: none;
+    padding-inline-start: 1.5em;
+}
+.toctree-wrapper .toctree-l1 > a {
+    font-size: 1.3em;
+}
+div.topic.contents ul.simple,
+nav.contents ul.simple {
+    list-style: none;
+    padding-left: 0;
+}
+
+nav.contents ul.simple > li > p > a {
+    color: var(--spark-list-color);
+    text-decoration: none;
+    display: flex;
+}
+
+nav.contents ul.simple > li:hover {
+    background-color: var(--spark-list-background-hover);
+}
diff --git a/intel_sphinx_theme/static/css/components/typography/icons.css b/intel_sphinx_theme/static/css/components/typography/icons.css
new file mode 100644
index 0000000..0e4df41
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/typography/icons.css
@@ -0,0 +1,1249 @@
+@font-face {
+    font-family: 'spark-icon';
+    src:
+        url('./spark-icon-solid.woff2') format('woff2'),
+        url('./spark-icon-solid.woff') format('woff'),
+        url('./spark-icon-solid.ttf') format('truetype');
+    font-weight: 600;
+    font-style: normal;
+    font-display: block;
+}
+
+@font-face {
+    font-family: 'spark-icon';
+    src:
+        url('./spark-icon-regular.woff2') format('woff2'),
+        url('./spark-icon-regular.woff') format('woff'),
+        url('./spark-icon-regular.ttf') format('truetype');
+    font-weight: 400;
+    font-style: normal;
+    font-display: block;
+}
+
+@font-face {
+    font-family: 'spark-icon';
+    src:
+        url('./spark-icon-light.woff2') format('woff2'),
+        url('./spark-icon-light.woff') format('woff'),
+        url('./spark-icon-light.ttf') format('truetype');
+    font-weight: 300;
+    font-style: normal;
+    font-display: block;
+}
+
+.spark-icon:not(.ui) {
+    font-family: 'spark-icon';
+    font-style: normal;
+    display: inline-block;
+    font-variant: normal;
+    text-rendering: auto;
+    line-height: 1;
+}
+
+.spark-icon:not(.ui):not(:empty):before {
+    padding-right: 0.25em;
+}
+.spark-icon:not(.ui).spark-icon-solid {
+    font-weight: 600;
+}
+.spark-icon:not(.ui).spark-icon-regular {
+    font-weight: 400;
+}
+.spark-icon:not(.ui).spark-icon-light {
+    font-weight: 300;
+}
+.spark-icon:not(.ui).spark-icon-spin {
+    animation: spark-icon-spin-animation 2s linear infinite;
+}
+
+.spark-icon:not(.ui).spark-icon-add-user:before {
+    content: '\f101';
+}
+.spark-icon:not(.ui).spark-icon-ai-simple:before {
+    content: '\f102';
+}
+.spark-icon:not(.ui).spark-icon-ai:before {
+    content: '\f103';
+}
+.spark-icon:not(.ui).spark-icon-airplane:before {
+    content: '\f104';
+}
+.spark-icon:not(.ui).spark-icon-alert-circle:before {
+    content: '\f105';
+}
+.spark-icon:not(.ui).spark-icon-alert-triangle:before {
+    content: '\f106';
+}
+.spark-icon:not(.ui).spark-icon-align-center:before {
+    content: '\f107';
+}
+.spark-icon:not(.ui).spark-icon-align-left:before {
+    content: '\f108';
+}
+.spark-icon:not(.ui).spark-icon-align-right:before {
+    content: '\f109';
+}
+.spark-icon:not(.ui).spark-icon-application-android:before {
+    content: '\f10a';
+}
+.spark-icon:not(.ui).spark-icon-application-window:before {
+    content: '\f10b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-bidirectional-h:before {
+    content: '\f10c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-bidirectional-v:before {
+    content: '\f10d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-down:before {
+    content: '\f10e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-fork-h:before {
+    content: '\f10f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down-left:before {
+    content: '\f110';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down-right:before {
+    content: '\f111';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down:before {
+    content: '\f112';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-left:before {
+    content: '\f113';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-right:before {
+    content: '\f114';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up-left:before {
+    content: '\f115';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up-right:before {
+    content: '\f116';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up:before {
+    content: '\f117';
+}
+.spark-icon:not(.ui).spark-icon-arrow-left:before {
+    content: '\f118';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-bidirectional-h:before {
+    content: '\f119';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-bidirectional-v:before {
+    content: '\f11a';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-down:before {
+    content: '\f11b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-left:before {
+    content: '\f11c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-opposite-h:before {
+    content: '\f11d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-opposite-v:before {
+    content: '\f11e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-right:before {
+    content: '\f11f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-up:before {
+    content: '\f120';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-left:before {
+    content: '\f121';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-right:before {
+    content: '\f122';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-slash-left:before {
+    content: '\f123';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-slash-right:before {
+    content: '\f124';
+}
+.spark-icon:not(.ui).spark-icon-arrow-opposite-h:before {
+    content: '\f125';
+}
+.spark-icon:not(.ui).spark-icon-arrow-opposite-v:before {
+    content: '\f126';
+}
+.spark-icon:not(.ui).spark-icon-arrow-right:before {
+    content: '\f127';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-bidirectional-h:before {
+    content: '\f128';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-bidirectional-v:before {
+    content: '\f129';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-down:before {
+    content: '\f12a';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-left:before {
+    content: '\f12b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-opposite-h:before {
+    content: '\f12c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-opposite-v:before {
+    content: '\f12d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-right:before {
+    content: '\f12e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-up:before {
+    content: '\f12f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-up:before {
+    content: '\f130';
+}
+.spark-icon:not(.ui).spark-icon-auto-format:before {
+    content: '\f131';
+}
+.spark-icon:not(.ui).spark-icon-backward:before {
+    content: '\f132';
+}
+.spark-icon:not(.ui).spark-icon-battery-charging:before {
+    content: '\f133';
+}
+.spark-icon:not(.ui).spark-icon-battery-critical:before {
+    content: '\f134';
+}
+.spark-icon:not(.ui).spark-icon-battery-empty:before {
+    content: '\f135';
+}
+.spark-icon:not(.ui).spark-icon-battery-full:before {
+    content: '\f136';
+}
+.spark-icon:not(.ui).spark-icon-battery-high:before {
+    content: '\f137';
+}
+.spark-icon:not(.ui).spark-icon-battery-low:before {
+    content: '\f138';
+}
+.spark-icon:not(.ui).spark-icon-battery-medium:before {
+    content: '\f139';
+}
+.spark-icon:not(.ui).spark-icon-bell:before {
+    content: '\f13a';
+}
+.spark-icon:not(.ui).spark-icon-blade-server:before {
+    content: '\f13b';
+}
+.spark-icon:not(.ui).spark-icon-bloch-sphere:before {
+    content: '\f13c';
+}
+.spark-icon:not(.ui).spark-icon-body:before {
+    content: '\f13d';
+}
+.spark-icon:not(.ui).spark-icon-bookmark:before {
+    content: '\f13e';
+}
+.spark-icon:not(.ui).spark-icon-bookshelf:before {
+    content: '\f13f';
+}
+.spark-icon:not(.ui).spark-icon-brand-fga:before {
+    content: '\f140';
+}
+.spark-icon:not(.ui).spark-icon-bulb:before {
+    content: '\f141';
+}
+.spark-icon:not(.ui).spark-icon-calendar:before {
+    content: '\f142';
+}
+.spark-icon:not(.ui).spark-icon-camera:before {
+    content: '\f143';
+}
+.spark-icon:not(.ui).spark-icon-caret-down:before {
+    content: '\f144';
+}
+.spark-icon:not(.ui).spark-icon-caret-left:before {
+    content: '\f145';
+}
+.spark-icon:not(.ui).spark-icon-caret-right:before {
+    content: '\f146';
+}
+.spark-icon:not(.ui).spark-icon-caret-up:before {
+    content: '\f147';
+}
+.spark-icon:not(.ui).spark-icon-cellular-critical:before {
+    content: '\f148';
+}
+.spark-icon:not(.ui).spark-icon-cellular-full:before {
+    content: '\f149';
+}
+.spark-icon:not(.ui).spark-icon-cellular-high:before {
+    content: '\f14a';
+}
+.spark-icon:not(.ui).spark-icon-cellular-low:before {
+    content: '\f14b';
+}
+.spark-icon:not(.ui).spark-icon-cellular-medium:before {
+    content: '\f14c';
+}
+.spark-icon:not(.ui).spark-icon-chain-connect:before {
+    content: '\f14d';
+}
+.spark-icon:not(.ui).spark-icon-chain-disconnect:before {
+    content: '\f14e';
+}
+.spark-icon:not(.ui).spark-icon-chart:before {
+    content: '\f14f';
+}
+.spark-icon:not(.ui).spark-icon-check-circle:before {
+    content: '\f150';
+}
+.spark-icon:not(.ui).spark-icon-check:before {
+    content: '\f151';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-empty:before {
+    content: '\f152';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-partially:before {
+    content: '\f153';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-selected:before {
+    content: '\f154';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-down:before {
+    content: '\f155';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-left:before {
+    content: '\f156';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-right:before {
+    content: '\f157';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-down:before {
+    content: '\f158';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-left:before {
+    content: '\f159';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-right:before {
+    content: '\f15a';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-up:before {
+    content: '\f15b';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-up:before {
+    content: '\f15c';
+}
+.spark-icon:not(.ui).spark-icon-chevron-down:before {
+    content: '\f15d';
+}
+.spark-icon:not(.ui).spark-icon-chevron-left:before {
+    content: '\f15e';
+}
+.spark-icon:not(.ui).spark-icon-chevron-right:before {
+    content: '\f15f';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-down:before {
+    content: '\f160';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-left:before {
+    content: '\f161';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-right:before {
+    content: '\f162';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-up:before {
+    content: '\f163';
+}
+.spark-icon:not(.ui).spark-icon-chevron-up:before {
+    content: '\f164';
+}
+.spark-icon:not(.ui).spark-icon-chip-alt:before {
+    content: '\f165';
+}
+.spark-icon:not(.ui).spark-icon-chip:before {
+    content: '\f166';
+}
+.spark-icon:not(.ui).spark-icon-circle:before {
+    content: '\f167';
+}
+.spark-icon:not(.ui).spark-icon-clamp:before {
+    content: '\f168';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-arrow-left:before {
+    content: '\f169';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-arrow-right:before {
+    content: '\f16a';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-backward:before {
+    content: '\f16b';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-forward:before {
+    content: '\f16c';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-list:before {
+    content: '\f16d';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-play:before {
+    content: '\f16e';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-text:before {
+    content: '\f16f';
+}
+.spark-icon:not(.ui).spark-icon-clipboard:before {
+    content: '\f170';
+}
+.spark-icon:not(.ui).spark-icon-cloud-download:before {
+    content: '\f171';
+}
+.spark-icon:not(.ui).spark-icon-cloud-error:before {
+    content: '\f172';
+}
+.spark-icon:not(.ui).spark-icon-cloud-off:before {
+    content: '\f173';
+}
+.spark-icon:not(.ui).spark-icon-cloud-success:before {
+    content: '\f174';
+}
+.spark-icon:not(.ui).spark-icon-cloud-upload:before {
+    content: '\f175';
+}
+.spark-icon:not(.ui).spark-icon-cloud:before {
+    content: '\f176';
+}
+.spark-icon:not(.ui).spark-icon-collapse-all:before {
+    content: '\f177';
+}
+.spark-icon:not(.ui).spark-icon-columns:before {
+    content: '\f178';
+}
+.spark-icon:not(.ui).spark-icon-command-line:before {
+    content: '\f179';
+}
+.spark-icon:not(.ui).spark-icon-comment-dots:before {
+    content: '\f17a';
+}
+.spark-icon:not(.ui).spark-icon-comment:before {
+    content: '\f17b';
+}
+.spark-icon:not(.ui).spark-icon-comments:before {
+    content: '\f17c';
+}
+.spark-icon:not(.ui).spark-icon-compass:before {
+    content: '\f17d';
+}
+.spark-icon:not(.ui).spark-icon-copy:before {
+    content: '\f17e';
+}
+.spark-icon:not(.ui).spark-icon-cpu-brain:before {
+    content: '\f17f';
+}
+.spark-icon:not(.ui).spark-icon-cpu:before {
+    content: '\f180';
+}
+.spark-icon:not(.ui).spark-icon-create-subresource:before {
+    content: '\f181';
+}
+.spark-icon:not(.ui).spark-icon-cross-circle:before {
+    content: '\f182';
+}
+.spark-icon:not(.ui).spark-icon-cross:before {
+    content: '\f183';
+}
+.spark-icon:not(.ui).spark-icon-crossroads-sign:before {
+    content: '\f184';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached:before {
+    content: '\f185';
+}
+.spark-icon:not(.ui).spark-icon-cube:before {
+    content: '\f186';
+}
+.spark-icon:not(.ui).spark-icon-database:before {
+    content: '\f187';
+}
+.spark-icon:not(.ui).spark-icon-deny:before {
+    content: '\f188';
+}
+.spark-icon:not(.ui).spark-icon-dependency:before {
+    content: '\f189';
+}
+.spark-icon:not(.ui).spark-icon-desk-phone:before {
+    content: '\f18a';
+}
+.spark-icon:not(.ui).spark-icon-desktop-shortcuts:before {
+    content: '\f18b';
+}
+.spark-icon:not(.ui).spark-icon-desktop:before {
+    content: '\f18c';
+}
+.spark-icon:not(.ui).spark-icon-digits-circle:before {
+    content: '\f18d';
+}
+.spark-icon:not(.ui).spark-icon-direction:before {
+    content: '\f18e';
+}
+.spark-icon:not(.ui).spark-icon-dislike:before {
+    content: '\f18f';
+}
+.spark-icon:not(.ui).spark-icon-document-arrow-right:before {
+    content: '\f190';
+}
+.spark-icon:not(.ui).spark-icon-document-code:before {
+    content: '\f191';
+}
+.spark-icon:not(.ui).spark-icon-document-diagram:before {
+    content: '\f192';
+}
+.spark-icon:not(.ui).spark-icon-document-gear:before {
+    content: '\f193';
+}
+.spark-icon:not(.ui).spark-icon-document-graph:before {
+    content: '\f194';
+}
+.spark-icon:not(.ui).spark-icon-document-list:before {
+    content: '\f195';
+}
+.spark-icon:not(.ui).spark-icon-document-plus:before {
+    content: '\f196';
+}
+.spark-icon:not(.ui).spark-icon-document-text-slash:before {
+    content: '\f197';
+}
+.spark-icon:not(.ui).spark-icon-document-text:before {
+    content: '\f198';
+}
+.spark-icon:not(.ui).spark-icon-document:before {
+    content: '\f199';
+}
+.spark-icon:not(.ui).spark-icon-download:before {
+    content: '\f19a';
+}
+.spark-icon:not(.ui).spark-icon-drag:before {
+    content: '\f19b';
+}
+.spark-icon:not(.ui).spark-icon-edit:before {
+    content: '\f19c';
+}
+.spark-icon:not(.ui).spark-icon-ellipse-vertical:before {
+    content: '\f19d';
+}
+.spark-icon:not(.ui).spark-icon-ellipse:before {
+    content: '\f19e';
+}
+.spark-icon:not(.ui).spark-icon-ellipsis-h:before {
+    content: '\f19f';
+}
+.spark-icon:not(.ui).spark-icon-ellipsis-v:before {
+    content: '\f1a0';
+}
+.spark-icon:not(.ui).spark-icon-email:before {
+    content: '\f1a1';
+}
+.spark-icon:not(.ui).spark-icon-energy:before {
+    content: '\f1a2';
+}
+.spark-icon:not(.ui).spark-icon-expand-all:before {
+    content: '\f1a3';
+}
+.spark-icon:not(.ui).spark-icon-external-link:before {
+    content: '\f1a4';
+}
+.spark-icon:not(.ui).spark-icon-eye-slash:before {
+    content: '\f1a5';
+}
+.spark-icon:not(.ui).spark-icon-eye:before {
+    content: '\f1a6';
+}
+.spark-icon:not(.ui).spark-icon-filter-cancel:before {
+    content: '\f1a7';
+}
+.spark-icon:not(.ui).spark-icon-filter:before {
+    content: '\f1a8';
+}
+.spark-icon:not(.ui).spark-icon-fire:before {
+    content: '\f1a9';
+}
+.spark-icon:not(.ui).spark-icon-fit-screen:before {
+    content: '\f1aa';
+}
+.spark-icon:not(.ui).spark-icon-flag:before {
+    content: '\f1ab';
+}
+.spark-icon:not(.ui).spark-icon-flame-chart:before {
+    content: '\f1ac';
+}
+.spark-icon:not(.ui).spark-icon-folder-add:before {
+    content: '\f1ad';
+}
+.spark-icon:not(.ui).spark-icon-folder-arrow-right:before {
+    content: '\f1ae';
+}
+.spark-icon:not(.ui).spark-icon-folder-user:before {
+    content: '\f1af';
+}
+.spark-icon:not(.ui).spark-icon-folder:before {
+    content: '\f1b0';
+}
+.spark-icon:not(.ui).spark-icon-forward:before {
+    content: '\f1b1';
+}
+.spark-icon:not(.ui).spark-icon-frame-copy:before {
+    content: '\f1b2';
+}
+.spark-icon:not(.ui).spark-icon-frame:before {
+    content: '\f1b3';
+}
+.spark-icon:not(.ui).spark-icon-full-zoom-in:before {
+    content: '\f1b4';
+}
+.spark-icon:not(.ui).spark-icon-full-zoom-out:before {
+    content: '\f1b5';
+}
+.spark-icon:not(.ui).spark-icon-function:before {
+    content: '\f1b6';
+}
+.spark-icon:not(.ui).spark-icon-gauge:before {
+    content: '\f1b7';
+}
+.spark-icon:not(.ui).spark-icon-gear:before {
+    content: '\f1b8';
+}
+.spark-icon:not(.ui).spark-icon-gears:before {
+    content: '\f1b9';
+}
+.spark-icon:not(.ui).spark-icon-globe-pointer:before {
+    content: '\f1ba';
+}
+.spark-icon:not(.ui).spark-icon-globe:before {
+    content: '\f1bb';
+}
+.spark-icon:not(.ui).spark-icon-gpu:before {
+    content: '\f1bc';
+}
+.spark-icon:not(.ui).spark-icon-graph-chart:before {
+    content: '\f1bd';
+}
+.spark-icon:not(.ui).spark-icon-graph:before {
+    content: '\f1be';
+}
+.spark-icon:not(.ui).spark-icon-grid:before {
+    content: '\f1bf';
+}
+.spark-icon:not(.ui).spark-icon-hand:before {
+    content: '\f1c0';
+}
+.spark-icon:not(.ui).spark-icon-handset:before {
+    content: '\f1c1';
+}
+.spark-icon:not(.ui).spark-icon-head-with-brain:before {
+    content: '\f1c2';
+}
+.spark-icon:not(.ui).spark-icon-head-with-speech:before {
+    content: '\f1c3';
+}
+.spark-icon:not(.ui).spark-icon-heart:before {
+    content: '\f1c4';
+}
+.spark-icon:not(.ui).spark-icon-heat-map:before {
+    content: '\f1c5';
+}
+.spark-icon:not(.ui).spark-icon-help-circle:before {
+    content: '\f1c6';
+}
+.spark-icon:not(.ui).spark-icon-help-comment:before {
+    content: '\f1c7';
+}
+.spark-icon:not(.ui).spark-icon-hexagon:before {
+    content: '\f1c8';
+}
+.spark-icon:not(.ui).spark-icon-home:before {
+    content: '\f1c9';
+}
+.spark-icon:not(.ui).spark-icon-hourglass:before {
+    content: '\f1ca';
+}
+.spark-icon:not(.ui).spark-icon-human-alt:before {
+    content: '\f1cb';
+}
+.spark-icon:not(.ui).spark-icon-human:before {
+    content: '\f1cc';
+}
+.spark-icon:not(.ui).spark-icon-icicle-chart:before {
+    content: '\f1cd';
+}
+.spark-icon:not(.ui).spark-icon-information-circle:before {
+    content: '\f1ce';
+}
+.spark-icon:not(.ui).spark-icon-inherited:before {
+    content: '\f1cf';
+}
+.spark-icon:not(.ui).spark-icon-key:before {
+    content: '\f1d0';
+}
+.spark-icon:not(.ui).spark-icon-keyboard:before {
+    content: '\f1d1';
+}
+.spark-icon:not(.ui).spark-icon-laptop-arrow-down:before {
+    content: '\f1d2';
+}
+.spark-icon:not(.ui).spark-icon-laptop:before {
+    content: '\f1d3';
+}
+.spark-icon:not(.ui).spark-icon-laptops:before {
+    content: '\f1d4';
+}
+.spark-icon:not(.ui).spark-icon-layout-horizontal:before {
+    content: '\f1d5';
+}
+.spark-icon:not(.ui).spark-icon-layout-vertical:before {
+    content: '\f1d6';
+}
+.spark-icon:not(.ui).spark-icon-letters-circle:before {
+    content: '\f1d7';
+}
+.spark-icon:not(.ui).spark-icon-like:before {
+    content: '\f1d8';
+}
+.spark-icon:not(.ui).spark-icon-list:before {
+    content: '\f1d9';
+}
+.spark-icon:not(.ui).spark-icon-lock:before {
+    content: '\f1da';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-area:before {
+    content: '\f1db';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-cancel:before {
+    content: '\f1dc';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-minus:before {
+    content: '\f1dd';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-plus:before {
+    content: '\f1de';
+}
+.spark-icon:not(.ui).spark-icon-magnifier:before {
+    content: '\f1df';
+}
+.spark-icon:not(.ui).spark-icon-match-whole-word:before {
+    content: '\f1e0';
+}
+.spark-icon:not(.ui).spark-icon-maximize:before {
+    content: '\f1e1';
+}
+.spark-icon:not(.ui).spark-icon-megaphone:before {
+    content: '\f1e2';
+}
+.spark-icon:not(.ui).spark-icon-memory-card:before {
+    content: '\f1e3';
+}
+.spark-icon:not(.ui).spark-icon-menu:before {
+    content: '\f1e4';
+}
+.spark-icon:not(.ui).spark-icon-microphone:before {
+    content: '\f1e5';
+}
+.spark-icon:not(.ui).spark-icon-millisecond:before {
+    content: '\f1e6';
+}
+.spark-icon:not(.ui).spark-icon-minus-circle:before {
+    content: '\f1e7';
+}
+.spark-icon:not(.ui).spark-icon-minus:before {
+    content: '\f1e8';
+}
+.spark-icon:not(.ui).spark-icon-mirror:before {
+    content: '\f1e9';
+}
+.spark-icon:not(.ui).spark-icon-mouse-left-click:before {
+    content: '\f1ea';
+}
+.spark-icon:not(.ui).spark-icon-mouse-right-click:before {
+    content: '\f1eb';
+}
+.spark-icon:not(.ui).spark-icon-mouse:before {
+    content: '\f1ec';
+}
+.spark-icon:not(.ui).spark-icon-network:before {
+    content: '\f1ed';
+}
+.spark-icon:not(.ui).spark-icon-object-selection:before {
+    content: '\f1ee';
+}
+.spark-icon:not(.ui).spark-icon-octagon:before {
+    content: '\f1ef';
+}
+.spark-icon:not(.ui).spark-icon-on-off:before {
+    content: '\f1f0';
+}
+.spark-icon:not(.ui).spark-icon-parallelogram:before {
+    content: '\f1f1';
+}
+.spark-icon:not(.ui).spark-icon-pause:before {
+    content: '\f1f2';
+}
+.spark-icon:not(.ui).spark-icon-pencil:before {
+    content: '\f1f3';
+}
+.spark-icon:not(.ui).spark-icon-pentagon:before {
+    content: '\f1f4';
+}
+.spark-icon:not(.ui).spark-icon-picture:before {
+    content: '\f1f5';
+}
+.spark-icon:not(.ui).spark-icon-pie-chart:before {
+    content: '\f1f6';
+}
+.spark-icon:not(.ui).spark-icon-pill-vertical:before {
+    content: '\f1f7';
+}
+.spark-icon:not(.ui).spark-icon-pill:before {
+    content: '\f1f8';
+}
+.spark-icon:not(.ui).spark-icon-pin-h:before {
+    content: '\f1f9';
+}
+.spark-icon:not(.ui).spark-icon-pin:before {
+    content: '\f1fa';
+}
+.spark-icon:not(.ui).spark-icon-play-pause:before {
+    content: '\f1fb';
+}
+.spark-icon:not(.ui).spark-icon-play:before {
+    content: '\f1fc';
+}
+.spark-icon:not(.ui).spark-icon-plugins:before {
+    content: '\f1fd';
+}
+.spark-icon:not(.ui).spark-icon-plus-circle:before {
+    content: '\f1fe';
+}
+.spark-icon:not(.ui).spark-icon-plus:before {
+    content: '\f1ff';
+}
+.spark-icon:not(.ui).spark-icon-point-pushpull:before {
+    content: '\f200';
+}
+.spark-icon:not(.ui).spark-icon-point-selector:before {
+    content: '\f201';
+}
+.spark-icon:not(.ui).spark-icon-pointer-area:before {
+    content: '\f202';
+}
+.spark-icon:not(.ui).spark-icon-pointer:before {
+    content: '\f203';
+}
+.spark-icon:not(.ui).spark-icon-printer:before {
+    content: '\f204';
+}
+.spark-icon:not(.ui).spark-icon-pulse:before {
+    content: '\f205';
+}
+.spark-icon:not(.ui).spark-icon-quartered-circle:before {
+    content: '\f206';
+}
+.spark-icon:not(.ui).spark-icon-rack-mount:before {
+    content: '\f207';
+}
+.spark-icon:not(.ui).spark-icon-radiobutton-empty:before {
+    content: '\f208';
+}
+.spark-icon:not(.ui).spark-icon-radiobutton-selected:before {
+    content: '\f209';
+}
+.spark-icon:not(.ui).spark-icon-random:before {
+    content: '\f20a';
+}
+.spark-icon:not(.ui).spark-icon-rectangle-vertical:before {
+    content: '\f20b';
+}
+.spark-icon:not(.ui).spark-icon-rectangle:before {
+    content: '\f20c';
+}
+.spark-icon:not(.ui).spark-icon-recycle:before {
+    content: '\f20d';
+}
+.spark-icon:not(.ui).spark-icon-redo-dotted:before {
+    content: '\f20e';
+}
+.spark-icon:not(.ui).spark-icon-redo-half-dotted:before {
+    content: '\f20f';
+}
+.spark-icon:not(.ui).spark-icon-redo-square:before {
+    content: '\f210';
+}
+.spark-icon:not(.ui).spark-icon-redo:before {
+    content: '\f211';
+}
+.spark-icon:not(.ui).spark-icon-refresh-gear:before {
+    content: '\f212';
+}
+.spark-icon:not(.ui).spark-icon-refresh-play:before {
+    content: '\f213';
+}
+.spark-icon:not(.ui).spark-icon-refresh:before {
+    content: '\f214';
+}
+.spark-icon:not(.ui).spark-icon-register:before {
+    content: '\f215';
+}
+.spark-icon:not(.ui).spark-icon-repeat:before {
+    content: '\f216';
+}
+.spark-icon:not(.ui).spark-icon-replay:before {
+    content: '\f217';
+}
+.spark-icon:not(.ui).spark-icon-rhombus:before {
+    content: '\f218';
+}
+.spark-icon:not(.ui).spark-icon-robot:before {
+    content: '\f219';
+}
+.spark-icon:not(.ui).spark-icon-rotary-phone:before {
+    content: '\f21a';
+}
+.spark-icon:not(.ui).spark-icon-scissors:before {
+    content: '\f21b';
+}
+.spark-icon:not(.ui).spark-icon-scope:before {
+    content: '\f21c';
+}
+.spark-icon:not(.ui).spark-icon-shading-rate:before {
+    content: '\f21d';
+}
+.spark-icon:not(.ui).spark-icon-shapes:before {
+    content: '\f21e';
+}
+.spark-icon:not(.ui).spark-icon-share:before {
+    content: '\f21f';
+}
+.spark-icon:not(.ui).spark-icon-shield-check:before {
+    content: '\f220';
+}
+.spark-icon:not(.ui).spark-icon-shield-disabled:before {
+    content: '\f221';
+}
+.spark-icon:not(.ui).spark-icon-shield:before {
+    content: '\f222';
+}
+.spark-icon:not(.ui).spark-icon-show-all:before {
+    content: '\f223';
+}
+.spark-icon:not(.ui).spark-icon-sigma:before {
+    content: '\f224';
+}
+.spark-icon:not(.ui).spark-icon-sign-in:before {
+    content: '\f225';
+}
+.spark-icon:not(.ui).spark-icon-sign-out:before {
+    content: '\f226';
+}
+.spark-icon:not(.ui).spark-icon-signal-alt:before {
+    content: '\f227';
+}
+.spark-icon:not(.ui).spark-icon-signal:before {
+    content: '\f228';
+}
+.spark-icon:not(.ui).spark-icon-simple-ps:before {
+    content: '\f229';
+}
+.spark-icon:not(.ui).spark-icon-skip-backward:before {
+    content: '\f22a';
+}
+.spark-icon:not(.ui).spark-icon-skip-forward:before {
+    content: '\f22b';
+}
+.spark-icon:not(.ui).spark-icon-sliders:before {
+    content: '\f22c';
+}
+.spark-icon:not(.ui).spark-icon-sort-order:before {
+    content: '\f22d';
+}
+.spark-icon:not(.ui).spark-icon-sound-off:before {
+    content: '\f22e';
+}
+.spark-icon:not(.ui).spark-icon-sound-on:before {
+    content: '\f22f';
+}
+.spark-icon:not(.ui).spark-icon-sound:before {
+    content: '\f230';
+}
+.spark-icon:not(.ui).spark-icon-source-type-metric:before {
+    content: '\f231';
+}
+.spark-icon:not(.ui).spark-icon-square-handles-rotate:before {
+    content: '\f232';
+}
+.spark-icon:not(.ui).spark-icon-square-handles:before {
+    content: '\f233';
+}
+.spark-icon:not(.ui).spark-icon-square:before {
+    content: '\f234';
+}
+.spark-icon:not(.ui).spark-icon-squares-handles:before {
+    content: '\f235';
+}
+.spark-icon:not(.ui).spark-icon-stack:before {
+    content: '\f236';
+}
+.spark-icon:not(.ui).spark-icon-star:before {
+    content: '\f237';
+}
+.spark-icon:not(.ui).spark-icon-stop:before {
+    content: '\f238';
+}
+.spark-icon:not(.ui).spark-icon-stream:before {
+    content: '\f239';
+}
+.spark-icon:not(.ui).spark-icon-sun-half:before {
+    content: '\f23a';
+}
+.spark-icon:not(.ui).spark-icon-sun:before {
+    content: '\f23b';
+}
+.spark-icon:not(.ui).spark-icon-table:before {
+    content: '\f23c';
+}
+.spark-icon:not(.ui).spark-icon-tag-add:before {
+    content: '\f23d';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-1:before {
+    content: '\f23e';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-2:before {
+    content: '\f23f';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-3:before {
+    content: '\f240';
+}
+.spark-icon:not(.ui).spark-icon-tag-group-add:before {
+    content: '\f241';
+}
+.spark-icon:not(.ui).spark-icon-tag-group:before {
+    content: '\f242';
+}
+.spark-icon:not(.ui).spark-icon-tag:before {
+    content: '\f243';
+}
+.spark-icon:not(.ui).spark-icon-target-check:before {
+    content: '\f244';
+}
+.spark-icon:not(.ui).spark-icon-target:before {
+    content: '\f245';
+}
+.spark-icon:not(.ui).spark-icon-task-dependency:before {
+    content: '\f246';
+}
+.spark-icon:not(.ui).spark-icon-task-range:before {
+    content: '\f247';
+}
+.spark-icon:not(.ui).spark-icon-team:before {
+    content: '\f248';
+}
+.spark-icon:not(.ui).spark-icon-thumbnails-view:before {
+    content: '\f249';
+}
+.spark-icon:not(.ui).spark-icon-time-check:before {
+    content: '\f24a';
+}
+.spark-icon:not(.ui).spark-icon-time:before {
+    content: '\f24b';
+}
+.spark-icon:not(.ui).spark-icon-timeout-warning:before {
+    content: '\f24c';
+}
+.spark-icon:not(.ui).spark-icon-trace-app:before {
+    content: '\f24d';
+}
+.spark-icon:not(.ui).spark-icon-trapezoid:before {
+    content: '\f24e';
+}
+.spark-icon:not(.ui).spark-icon-trash:before {
+    content: '\f24f';
+}
+.spark-icon:not(.ui).spark-icon-triangle:before {
+    content: '\f250';
+}
+.spark-icon:not(.ui).spark-icon-undo-dotted:before {
+    content: '\f251';
+}
+.spark-icon:not(.ui).spark-icon-undo-half-dotted:before {
+    content: '\f252';
+}
+.spark-icon:not(.ui).spark-icon-undo-square:before {
+    content: '\f253';
+}
+.spark-icon:not(.ui).spark-icon-undo:before {
+    content: '\f254';
+}
+.spark-icon:not(.ui).spark-icon-unlock:before {
+    content: '\f255';
+}
+.spark-icon:not(.ui).spark-icon-update-failure:before {
+    content: '\f256';
+}
+.spark-icon:not(.ui).spark-icon-update-success:before {
+    content: '\f257';
+}
+.spark-icon:not(.ui).spark-icon-upload:before {
+    content: '\f258';
+}
+.spark-icon:not(.ui).spark-icon-user-circle:before {
+    content: '\f259';
+}
+.spark-icon:not(.ui).spark-icon-user-globe:before {
+    content: '\f25a';
+}
+.spark-icon:not(.ui).spark-icon-user:before {
+    content: '\f25b';
+}
+.spark-icon:not(.ui).spark-icon-users:before {
+    content: '\f25c';
+}
+.spark-icon:not(.ui).spark-icon-watershed:before {
+    content: '\f25d';
+}
+.spark-icon:not(.ui).spark-icon-window-charging:before {
+    content: '\f25e';
+}
+.spark-icon:not(.ui).spark-icon-wrench:before {
+    content: '\f25f';
+}
+.spark-icon:not(.ui).spark-icon-zoom-out-selection:before {
+    content: '\f260';
+}
+.spark-icon:not(.ui).spark-icon-zoom-to-selection:before {
+    content: '\f261';
+}
+.spark-icon:not(.ui).spark-icon-alert:before {
+    content: '\f262';
+}
+.spark-icon:not(.ui).spark-icon-clip:before {
+    content: '\f263';
+}
+.spark-icon:not(.ui).spark-icon-contract:before {
+    content: '\f264';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-left:before {
+    content: '\f265';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-right:before {
+    content: '\f266';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-top:before {
+    content: '\f267';
+}
+.spark-icon:not(.ui).spark-icon-ear:before {
+    content: '\f268';
+}
+.spark-icon:not(.ui).spark-icon-expand:before {
+    content: '\f269';
+}
+.spark-icon:not(.ui).spark-icon-hash:before {
+    content: '\f26a';
+}
+.spark-icon:not(.ui).spark-icon-help:before {
+    content: '\f26b';
+}
+.spark-icon:not(.ui).spark-icon-information:before {
+    content: '\f26c';
+}
+.spark-icon:not(.ui).spark-icon-lasso:before {
+    content: '\f26d';
+}
+.spark-icon:not(.ui).spark-icon-line-mapping:before {
+    content: '\f26e';
+}
+.spark-icon:not(.ui).spark-icon-line:before {
+    content: '\f26f';
+}
+.spark-icon:not(.ui).spark-icon-magic-wand:before {
+    content: '\f270';
+}
+.spark-icon:not(.ui).spark-icon-shapes-exclude:before {
+    content: '\f271';
+}
+.spark-icon:not(.ui).spark-icon-shapes-intersect:before {
+    content: '\f272';
+}
+.spark-icon:not(.ui).spark-icon-shapes-subtract:before {
+    content: '\f273';
+}
+.spark-icon:not(.ui).spark-icon-shapes-union:before {
+    content: '\f274';
+}
+.spark-icon:not(.ui).spark-icon-source-line-mapping:before {
+    content: '\f275';
+}
+.spark-icon:not(.ui).spark-icon-spinner-bg:before {
+    content: '\f276';
+}
+.spark-icon:not(.ui).spark-icon-spinner-quarter-half:before {
+    content: '\f277';
+}
+.spark-icon:not(.ui).spark-icon-spinner-quarter:before {
+    content: '\f278';
+}
+.spark-icon:not(.ui).spark-icon-spinner-three-quarters-half:before {
+    content: '\f279';
+}
+.spark-icon:not(.ui).spark-icon-spinner-three-quarters:before {
+    content: '\f27a';
+}
+.spark-icon:not(.ui).spark-icon-tag-revisit-alt-1:before {
+    content: '\f27b';
+}
+.spark-icon:not(.ui).spark-icon-tag-revisit:before {
+    content: '\f27c';
+}
+.spark-icon:not(.ui).spark-icon-three-dots-circle:before {
+    content: '\f27d';
+}
+.spark-icon:not(.ui).spark-icon-time-refresh:before {
+    content: '\f27e';
+}
+.spark-icon:not(.ui).spark-icon-build-cube:before {
+    content: '\f27f';
+}
+.spark-icon:not(.ui).spark-icon-cloud-loader:before {
+    content: '\f280';
+}
+.spark-icon:not(.ui).spark-icon-circle-half-fill:before {
+    content: '\f281';
+}
+.spark-icon:not(.ui).spark-icon-application-window-alt:before {
+    content: '\f282';
+}
+.spark-icon:not(.ui).spark-icon-host-error:before {
+    content: '\f283';
+}
+.spark-icon:not(.ui).spark-icon-host-fail:before {
+    content: '\f284';
+}
+.spark-icon:not(.ui).spark-icon-host-info:before {
+    content: '\f285';
+}
+.spark-icon:not(.ui).spark-icon-host-settings-alt:before {
+    content: '\f286';
+}
+.spark-icon:not(.ui).spark-icon-host-settings:before {
+    content: '\f287';
+}
+.spark-icon:not(.ui).spark-icon-host-success:before {
+    content: '\f288';
+}
+.spark-icon:not(.ui).spark-icon-host:before {
+    content: '\f289';
+}
+.spark-icon:not(.ui).spark-icon-location:before {
+    content: '\f28a';
+}
+
+@keyframes spark-icon-spin-animation {
+    0% {
+        transform: rotate(0deg);
+    }
+    100% {
+        transform: rotate(360deg);
+    }
+}
diff --git a/intel_sphinx_theme/static/css/components/typography/index.css b/intel_sphinx_theme/static/css/components/typography/index.css
new file mode 100644
index 0000000..dde60dc
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/typography/index.css
@@ -0,0 +1,3 @@
+@import './style.css';
+@import './properties.css';
+@import './icons.css';
diff --git a/intel_sphinx_theme/static/css/components/typography/properties.css b/intel_sphinx_theme/static/css/components/typography/properties.css
new file mode 100644
index 0000000..f5546a3
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/typography/properties.css
@@ -0,0 +1,204 @@
+@font-face {
+    font-family: IntelOne-Display;
+    src: url(../../../fonts/IntelOneDisplay/intelone-display-regular.woff2);
+    font-weight: normal;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Display;
+    src: url(../../../fonts/IntelOneDisplay/intelone-display-bold.woff2);
+    font-weight: 800; /* Bold weight is extra bold */
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Display;
+    src: url(../../../fonts/IntelOneDisplay/intelone-display-light.woff2);
+    font-weight: 300;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Display;
+    src: url(../../../fonts/IntelOneDisplay/intelone-display-medium.woff2);
+    font-weight: bold; /* We use the medium weight for bold */
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-regular.woff2);
+    font-weight: normal;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-bold.woff2);
+    font-weight: 800; /* Bold weight is extra bold */
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-italic.woff2);
+    font-weight: normal;
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-bolditalic.woff2);
+    font-weight: 800; /* Bold weight is extra bold */
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-light.woff2);
+    font-weight: 300;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-lightitalic.woff2);
+    font-weight: 300;
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-medium.woff2);
+    font-weight: bold; /* We use the medium weight for bold */
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Text;
+    src: url(../../../fonts/IntelOneText/intelone-text-mediumitalic.woff2);
+    font-weight: bold; /* We use the medium weight for bold */
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-Regular.woff2);
+    font-weight: normal;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-Bold.woff2);
+    font-weight: bold;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-Italic.woff2);
+    font-weight: normal;
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-BoldItalic.woff2);
+    font-weight: bold;
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-Light.woff2);
+    font-weight: 300;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-LightItalic.woff2);
+    font-weight: 300;
+    font-style: italic;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-Medium.woff2);
+    font-weight: 500;
+    font-style: normal;
+}
+
+@font-face {
+    font-family: IntelOne-Mono;
+    src: url(../../../fonts/IntelOneMono/IntelOneMono-MediumItalic.woff2);
+    font-weight: 500;
+    font-style: italic;
+}
+
+:root {
+    --spark-font-intel-one-text: IntelOne-Text;
+    --spark-font-intel-one-display: IntelOne-Display;
+    --spark-font-family-monospace: IntelOne-Mono;
+}
+
+:root {
+    --spark-font-size-25: 0.6875rem;
+    --spark-font-size-50: 0.75rem;
+    --spark-font-size-75: 0.875rem;
+    --spark-font-size-100: 1rem;
+    --spark-font-size-200: 1rem;
+    --spark-font-size-300: 1.125rem;
+    --spark-font-size-400: 1.25rem;
+    --spark-font-size-500: 1.5rem;
+    --spark-font-size-600: 1.875rem;
+    --spark-font-size-700: 2.25rem;
+}
+
+:root {
+    --spark-line-height-text: 1.5;
+    --spark-line-height-heading: 1.3;
+}
+
+:root {
+    --spark-letter-spacing-small: 0.015625rem;
+    --spark-letter-spacing-zero: 0rem;
+}
+
+:root {
+    --pst-sidebar-header-font-weight: light;
+    --pst-admonition-font-weight-heading: bold;
+    --pst-font-weight-caption: light;
+    --pst-font-weight-heading: light;
+
+    /* --pst-header-height: 4rem;
+    --pst-header-article-height: calc(var(--pst-header-height)* 2 / 3);
+    --pst-sidebar-secondary: 17rem;
+    --pst-font-size-base: 1rem;
+    --pst-font-size-h1: 2.5rem;
+    --pst-font-size-h2: 2rem;
+    --pst-font-size-h3: 1.75rem;
+    --pst-font-size-h4: 1.5rem;
+    --pst-font-size-h5: 1.25rem;
+    --pst-font-size-h6: 1.1rem;
+    --pst-font-size-milli: 0.9rem;
+    --pst-sidebar-font-size: 0.9rem;
+    --pst-sidebar-font-size-mobile: 1.1rem;
+    --pst-sidebar-header-font-size: 1.2rem; */
+
+    --pst-font-family-base-system:
+        IntelOne-Text, -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica Neue', 'Arial',
+        sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
+    --pst-font-family-monospace-system:
+        IntelOne-Mono, 'SFMono-Regular', 'Menlo', 'Consolas', 'Monaco', 'Liberation Mono',
+        'Lucida Console', monospace;
+
+    --pst-font-family-base: var(--pst-font-family-base-system);
+    --pst-font-family-heading:
+        var(--spark-font-intel-one-display), -apple-system, 'BlinkMacSystemFont', 'Segoe UI',
+        'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
+        'Segoe UI Symbol';
+    --pst-font-family-monospace: var(--pst-font-family-monospace-system);
+}
diff --git a/intel_sphinx_theme/static/css/components/typography/style.css b/intel_sphinx_theme/static/css/components/typography/style.css
new file mode 100644
index 0000000..8eff60f
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/typography/style.css
@@ -0,0 +1,64 @@
+html {
+    font-size: var(--spark-font-size-100);
+}
+
+body {
+    font-family: var(--spark-font-intel-one-text);
+    font-weight: normal;
+    line-height: var(--spark-line-height-text);
+    letter-spacing: var(--spark-letter-spacing-zero);
+}
+
+h6 {
+    font-size: var(--spark-font-size-200);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: normal;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-text-base);
+}
+
+h5 {
+    font-size: var(--spark-font-size-300);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: normal;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-text-base);
+}
+
+h4 {
+    font-size: var(--spark-font-size-400);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: normal;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-text-base);
+}
+
+h3 {
+    font-size: var(--spark-font-size-500);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: 300;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-primary);
+}
+
+h2 {
+    font-size: var(--spark-font-size-600);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: 300;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-primary);
+}
+
+h1 {
+    font-size: var(--spark-font-size-700);
+    font-family: var(--spark-font-intel-one-display);
+    font-weight: 300;
+    line-height: var(--spark-line-height-heading);
+    letter-spacing: var(--spark-letter-spacing-zero);
+    color: var(--spark-color-primary);
+}
diff --git a/intel_sphinx_theme/static/css/components/version-switcher-dropdown/index.css b/intel_sphinx_theme/static/css/components/version-switcher-dropdown/index.css
new file mode 100644
index 0000000..3302f2a
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/version-switcher-dropdown/index.css
@@ -0,0 +1 @@
+@import './style.css';
diff --git a/intel_sphinx_theme/static/css/components/version-switcher-dropdown/style.css b/intel_sphinx_theme/static/css/components/version-switcher-dropdown/style.css
new file mode 100644
index 0000000..1740927
--- /dev/null
+++ b/intel_sphinx_theme/static/css/components/version-switcher-dropdown/style.css
@@ -0,0 +1,11 @@
+button.version-switcher__button {
+    border-radius: 0 !important;
+    line-height: 30px;
+}
+
+/* version switcher coloring is taken care of in the header component */
+
+.version-switcher__menu.dropdown-menu {
+    border-radius: 0 !important;
+    box-shadow: 0 2px 6px #0000004d;
+}
diff --git a/intel_sphinx_theme/static/css/global-tb/base.css b/intel_sphinx_theme/static/css/global-tb/base.css
new file mode 100644
index 0000000..58d07e5
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global-tb/base.css
@@ -0,0 +1,191 @@
+* {
+    border-radius: 0 !important;
+}
+
+body {
+    background-color: var(--spark-color-background);
+    color: var(--spark-color-text-base);
+}
+
+p {
+    color: var(--spark-color-text-base);
+}
+
+p > .rubric {
+    border-bottom: 1px solid var(--spark-color-border);
+}
+
+a {
+    color: var(--spark-color-link);
+}
+
+a:visited:not(.nav-link):not(.bd-links a) {
+    color: var(--spark-color-link-visited);
+}
+
+a:hover {
+    color: var(--spark-color-link-hover);
+}
+
+/* a.headerlink {
+    color: var(--spark-color-warning);
+} */
+
+a.headerlink::before {
+    color: var(--spark-color-text-muted);
+}
+
+hr {
+    border: 0;
+    border-top: 1px solid var(--spark-color-border);
+}
+
+pre,
+code,
+kbd,
+samp {
+    font-family: var(--spark-font-family-monospace);
+    border-radius: 0;
+}
+
+kbd:not(.compound) {
+    border: 1px solid var(--spark-color-border);
+    box-shadow: 1px 1px 1px var(--spark-color-shadow);
+}
+
+code {
+    color: var(--spark-color-text-base);
+}
+
+/*pre {
+    background-color: var(--spark-color-surface);
+    color: var(--spark-color-text-base);
+    border: 1px solid var(--spark-color-border);
+} */
+
+html[data-theme='dark'] span.highlighted {
+    background-color: var(--spark-color-highlight);
+    color: var(--spark-color-highlight-text-base);
+}
+
+#pst-back-to-top {
+    background-color: var(--spark-color-primary);
+}
+
+.form-control:focus,
+.form-control:focus-visible {
+    outline: 3px solid var(--spark-color-primary);
+    box-shadow: none;
+}
+
+#pst-back-to-top:hover {
+    background-color: var(--spark-color-secondary);
+}
+
+/* Themed image */
+.light-theme {
+    display: none;
+}
+
+:root[data-theme='light'] .light-theme {
+    display: inline;
+}
+
+:root[data-theme='light'] .dark-theme {
+    display: none;
+}
+
+:root[data-theme='dark'] .dark-theme {
+    display: inline;
+}
+
+:root[data-theme='dark'] .light-theme {
+    display: none;
+}
+
+html[data-theme='dark'] .bd-content img:not(.only-dark, .dark-light) {
+    background-color: transparent !important;
+}
+
+html[data-theme='dark'] img:not(.only-dark):not(.dark-light) {
+    filter: none !important;
+}
+
+html[data-theme='dark'] img:not(.only-dark, .dark-light) {
+    filter: none !important;
+}
+
+/* Code block line wrap button */
+.highlight.scrollable .linewrap-button,
+.highlight .linewrap-button {
+    display: none;
+}
+
+.highlight.scrollable:hover .linewrap-button {
+    display: block;
+    cursor: pointer;
+    position: absolute;
+    border: none;
+    width: 1.7em;
+    height: 1.7em;
+    top: 0.3em;
+    right: 2.25em;
+    background-color: var(--pst-color-surface);
+    border-radius: 0.4em;
+    align-items: center;
+    transition:
+        opacity 0.3s,
+        border 0.3s,
+        background-color 0.3s;
+}
+
+.highlight.scrollable .linewrap-button:hover {
+    background-color: var(--pst-color-shadow);
+}
+
+.highlight .linewrap-button svg {
+    fill: var(--pst-color-muted);
+}
+
+.highlight .linewrap-button:hover svg {
+    fill: var(--spark-color-text-base);
+}
+
+pre.wrapped,
+code.wrapped {
+    white-space: pre-wrap;
+    word-wrap: break-word;
+}
+
+.link-list ul li {
+    color: var(--pst-color-link);
+}
+
+.bd-search {
+    border: none;
+    background: none;
+}
+
+.toc-entry a.nav-link:hover,
+nav.bd-links li > a:hover,
+ul.bd-breadcrumbs li.breadcrumb-item a:hover,
+a:hover {
+    text-decoration-thickness: max(2px, 0.1rem, 0.12em);
+}
+
+.bd-page-width {
+    max-width: 100%; /* default is 88rem */
+}
+
+.bd-sidebar-primary {
+    max-width: 300px;
+    padding-left: 2rem;
+}
+
+.bd-main .bd-content {
+    justify-content: start;
+}
+
+.bd-header .navbar-header-items {
+    position: unset;
+}
diff --git a/intel_sphinx_theme/static/css/global-tb/global.css b/intel_sphinx_theme/static/css/global-tb/global.css
new file mode 100644
index 0000000..88f42ac
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global-tb/global.css
@@ -0,0 +1,230 @@
+html[data-theme='light'] {
+    --spark-color-background: var(--spark-color-tb-theme-light-gray50);
+    --spark-color-layer1: var(--spark-color-tb-theme-light-gray75);
+    --spark-color-layer2: var(--spark-color-tb-theme-light-gray200);
+    --spark-color-text-base: var(--spark-color-tb-theme-light-gray900);
+    --spark-color-text-inverse: var(--spark-color-tb-theme-light-gray50);
+    --spark-color-primary: var(--spark-color-aqua-shade1-5);
+    --spark-color-secondary: var(--spark-color-cosmos-shade2);
+    --spark-color-border: var(--spark-color-tb-theme-light-gray400);
+    --spark-color-link: var(--spark-color-aqua-shade2);
+    --spark-color-link-visited: #38007f;
+    --spark-navbar-icon-color: var(--spark-color-aqua-tint2);
+    /* --spark-color-shadow: var(--spark-color-tb-theme-light-gray900); */
+    --spark-color-text-muted: var(--spark-color-tb-theme-light-gray800);
+    --spark-color-muted: var(--spark-color-tb-theme-light-gray800);
+    --spark-color-sidebar-toggle: var(--spark-color-tb-theme-light-gray200);
+    --bs-nav-link-color: var(--pst-color-surface);
+    --bs-dropdown-border-radius: 0;
+    --bs-border-radius: 0;
+}
+
+html[data-theme='light'] {
+    --pst-color-link-hover: var(--spark-color-cosmos-shade1);
+    --pst-color-text-base: var(--spark-color-text-base);
+    --pst-color-border: var(--spark-color-tb-theme-light-gray400);
+    --pst-color-link: var(--spark-color-aqua-shade2);
+    --pst-color-link-hover: #065955;
+    /* --pst-color-shadow: var(--spark-color-tb-theme-light-gray900); */
+    --pst-color-text-muted: var(--spark-color-tb-theme-light-gray800);
+    --pst-color-target: var(--spark-color-classic-blue-tint2);
+
+    /* Set up base colors */
+    --pst-color-primary: var(--spark-color-aqua-shade1-5);
+    --pst-color-primary-highlight: #065955;
+    --pst-color-primary-text: var(--spark-color-text-inverse);
+    --pst-color-primary-bg: #d1fbf4;
+
+    /* Secondary is cosmos */
+    --pst-color-secondary: var(--spark-color-cosmos-shade1);
+    --pst-color-secondary-highlight: var(--spark-color-cosmos-shade2);
+    --pst-color-secondary-text: var(--spark-color-text-inverse);
+    --pst-color-secondary-bg: #E1D9FF;
+
+    --pst-color-accent: var(--spark-color-classic-blue-shade2);
+    --pst-color-accent-highlight: var(--spark-color-classic-blue-tint2);
+    --pst-color-accent-text: var(--spark-color-theme-light-gray900);
+    --pst-color-accent-bg: var(--spark-color-classic-blue-tint1);
+
+    --pst-color-info: var(--pst-color-primary);
+    --pst-color-info-highlight: var(--pst-color-primary-highlight);
+    --pst-color-info-text: var(--pst-color-primary-text);
+    --pst-color-info-bg: var(--pst-color-primary-bg);
+
+    --pst-color-success: var(--spark-color-success);
+    --pst-color-success-highlight: var(--spark-color-success-soft);
+    --pst-color-success-text: var(--spark-color-text-inverse);
+    --pst-color-success-bg: var(--spark-color-success-background);
+
+    --pst-color-warning: var(--spark-color-warning);
+    --pst-color-warning-highlight: var(--spark-color-warning-soft);
+    --pst-color-warning-text: var(--spark-color-text);
+    --pst-color-warning-bg: var(--spark-color-warning-background);
+
+    --pst-color-danger: var(--spark-color-error);
+    --pst-color-danger-highlight: var(--spark-color-error-soft);
+    --pst-color-danger-text: var(--spark-color-text-inverse);
+    --pst-color-danger-bg: var(--spark-color-error-background);
+
+    --pst-color-muted: var(--spark-color-theme-light-gray800);
+    --pst-color-muted-text: var(--spark-color-theme-light-gray50);
+    --pst-color-muted-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-muted-bg: var(--spark-color-theme-light-gray800);
+
+    --pst-color-dark: var(--spark-color-theme-light-gray900);
+    --pst-color-dark-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-dark-text: var(--spark-color-theme-light-gray50);
+    --pst-color-dark-bg: var(--spark-color-theme-light-gray900);
+
+    --pst-color-light: var(--spark-color-theme-light-gray50);
+    --pst-color-light-highlight: var(--spark-color-theme-light-gray100);
+    --pst-color-light-text: var(--spark-color-theme-light-gray900);
+    --pst-color-light-bg: var(--spark-color-theme-light-gray50);
+
+    /* White color set */
+    --pst-color-white: var(--spark-color-theme-light-gray50);
+    --pst-color-white-highlight: var(--spark-color-theme-light-gray100);
+    --pst-color-white-text: var(--spark-color-black);
+    --pst-color-white-bg: var(--spark-color-theme-light-gray50);
+
+    /* Black color set */
+    --pst-color-black: var(--spark-color-theme-light-gray900);
+    --pst-color-black-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-black-text: var(--spark-color-white);
+    --pst-color-black-bg: var(--spark-color-theme-light-gray900);
+
+    /* Layers */
+    --pst-color-background: var(--spark-color-background);
+    --pst-color-on-background: var(--spark-color-layer1);
+    --pst-color-surface: var(--spark-color-layer1);
+    --pst-color-on-surface: var(--spark-color-text-base);
+
+    /* Tables */
+    --pst-color-table: var(--pst-color-on-surface);
+    --pst-color-table-row-hover-bg: var(--spark-color-layer2);
+    --pst-color-table-inner-border: var(--spark-color-border);
+    --pst-color-table-outer-border: var(--pst-color-surface);
+    --pst-color-table-heading-bg: var(--pst-color-surface);
+    --pst-color-table-row-zebra-high-bg: var(--pst-color-on-background);
+    --pst-color-table-row-zebra-low-bg: var(--pst-color-surface);
+    --bs-table-bg: var(--pst-color-background);
+}
+
+html[data-theme='dark'] {
+    --spark-color-background: var(--spark-color-tb-theme-dark-gray50);
+    --spark-color-layer1: var(--spark-color-tb-theme-dark-gray100);
+    --spark-color-layer2: var(--spark-color-tb-theme-dark-gray200);
+    --spark-color-text-base: var(--spark-color-tb-theme-dark-gray900);
+    --spark-color-text-inverse: var(--spark-color-tb-theme-dark-gray50);
+    --spark-color-primary: var(--spark-color-aqua);
+    --spark-color-secondary: var(--spark-color-aqua-shade1);
+    --spark-color-border: var(--spark-color-tb-theme-dark-gray500);
+    --spark-color-link: var(--spark-color-aqua);
+    --spark-color-link-visited: var(--spark-color-aqua-tint2);
+    --spark-navbar-icon-color: var(--spark-color-aqua-tint2);
+    --spark-color-highlight: var(--spark-color-daisy-tint1);
+    --spark-color-highlight-text-base: var(--spark-color-tb-theme-light-gray900);
+    /* --spark-color-shadow: var(--spark-color-tb-theme-dark-gray900); */
+    --spark-color-text-muted: var(--spark-color-tb-theme-dark-gray800);
+    --spark-color-muted: var(--spark-color-tb-theme-dark-gray800);
+    --spark-color-sidebar-toggle: var(--spark-color-tb-theme-light-gray200);
+    --bs-dropdown-border-radius: 0;
+    --bs-border-radius: 0;
+}
+
+html[data-theme='dark'] {
+    --pst-color-link-hover: var(--spark-color-aqua-tint1);
+    --pst-color-background: var(--spark-color-tb-theme-dark-gray50);
+    --pst-color-on-background: var(--spark-color-tb-theme-dark-gray100);
+    --pst-color-text-base: var(--spark-color-text-base);
+    --pst-color-border: var(--spark-color-tb-theme-dark-gray500);
+    --pst-color-link: var(--spark-color-aqua);
+    --pst-color-link-hover: var(--spark-color-aqua-shade1);
+    /* --pst-color-shadow: var(--spark-color-tb-theme-dark-gray900); */
+    --pst-color-target: var(--spark-color-energy-blue-tint2);
+    /* Set up base colors */
+    /* Primary is energy blue */
+    --pst-color-primary: var(--spark-color-aqua);
+    --pst-color-primary-highlight: var(--spark-color-aqua-tint1);
+    --pst-color-primary-text: var(--spark-color-text-inverse);
+    --pst-color-primary-bg: #065955;
+
+    /* Secondary is cosmos */
+    --pst-color-secondary: var(--spark-color-cosmos-tint2);
+    --pst-color-secondary-highlight: #E1D9FF;
+    --pst-color-secondary-text: var(--pst-color-primary-text);
+    --pst-color-secondary-bg: #1F0047;
+
+    /* Accent is ??? */
+    --pst-color-accent: var(--spark-color-energy-blue-tint2);
+    --pst-color-accent-highlight: var(--spark-color-energy-blue-tint3);
+    --pst-color-accent-text: var(--spark-color-text-inverse);
+    --pst-color-accent-bg: var(--spark-color-energy-blue-tint2);
+
+    --pst-color-info: var(--pst-color-primary);
+    --pst-color-info-highlight: var(--pst-color-primary-highlight);
+    --pst-color-info-text: var(--pst-color-primary-text);
+    --pst-color-info-bg: var(--pst-color-primary-bg);
+
+    /* Success is success green */
+    --pst-color-success: var(--spark-color-success-soft);
+    --pst-color-success-highlight: var(--spark-color-success-natural);
+    --pst-color-success-text: var(--spark-color-text-inverse);
+    --pst-color-success-bg: var(--spark-color-success-background-inverse);
+
+    /* Warning is warning yellow */
+    --pst-color-warning: var(--spark-color-warning-soft);
+    --pst-color-warning-highlight: var(--spark-color-warning-natural);
+    --pst-color-warning-text: var(--spark-color-text-inverse);
+    --pst-color-warning-bg: var(--spark-color-warning-background-inverse);
+
+    /* Danger is error red */
+    --pst-color-danger: var(--spark-color-error-soft);
+    --pst-color-danger-highlight: var(--spark-color-error-natural);
+    --pst-color-danger-text: var(--spark-color-text-inverse);
+    --pst-color-danger-bg: var(--spark-color-error-background-inverse);
+
+    /* Muted is ? */
+    --pst-color-muted: var(--spark-color-theme-dark-gray800);
+    --pst-color-muted-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-muted-text: var(--spark-color-theme-dark-gray50);
+    --pst-color-muted-bg: var(--spark-color-theme-dark-gray800);
+
+    --pst-color-dark: var(--spark-color-theme-dark-gray900);
+    --pst-color-dark-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-dark-text: var(--spark-color-theme-dark-gray50);
+    --pst-color-dark-bg: var(--spark-color-theme-dark-gray900);
+
+    --pst-color-light: var(--spark-color-theme-dark-gray50);
+    --pst-color-light-highlight: var(--spark-color-theme-dark-gray100);
+    --pst-color-light-text: var(--spark-color-theme-dark-gray900);
+    --pst-color-light-bg: var(--spark-color-theme-dark-gray50);
+
+    /* White color set - best to think of as inverse */
+    --pst-color-white: var(--spark-color-theme-dark-gray50);
+    --pst-color-white-highlight: var(--spark-color-theme-dark-gray100);
+    --pst-color-white-text: var(--spark-color-white);
+    --pst-color-white-bg: var(--spark-color-theme-dark-gray50);
+
+    /* Black color set - best to think of as inverse */
+    --pst-color-black: var(--spark-color-theme-dark-gray900);
+    --pst-color-black-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-black-text: var(--spark-color-black);
+    --pst-color-black-bg: var(--spark-color-theme-dark-gray900);
+
+    /* Layers */
+    --pst-color-background: var(--spark-color-background);
+    --pst-color-on-background: var(--spark-color-layer1);
+    --pst-color-surface: var(--spark-color-layer1);
+    --pst-color-on-surface: var(--spark-color-text-base);
+
+    /* Tables */
+    --pst-color-table: var(--pst-color-on-surface);
+    --pst-color-table-row-hover-bg: var(--spark-color-layer2);
+    --pst-color-table-inner-border: var(--spark-color-border);
+    --pst-color-table-outer-border: var(--pst-color-surface);
+    --pst-color-table-heading-bg: var(--pst-color-surface);
+    --pst-color-table-row-zebra-high-bg: var(--pst-color-on-background);
+    --pst-color-table-row-zebra-low-bg: var(--pst-color-surface);
+    --bs-table-bg: var(--pst-color-background);
+}
diff --git a/intel_sphinx_theme/static/css/global-tb/index.css b/intel_sphinx_theme/static/css/global-tb/index.css
new file mode 100644
index 0000000..650cf46
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global-tb/index.css
@@ -0,0 +1,4 @@
+@import './base.css';
+@import '../global/spark-colors.css';
+@import './global.css';
+@import './spark-icons.css';
diff --git a/intel_sphinx_theme/static/css/global-tb/spark-icons.css b/intel_sphinx_theme/static/css/global-tb/spark-icons.css
new file mode 100644
index 0000000..224a508
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global-tb/spark-icons.css
@@ -0,0 +1,55 @@
+/* Home icon */
+ul.bd-breadcrumbs li.breadcrumb-item a svg {
+    display: none;
+}
+
+.breadcrumb-home a::before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f1c9';
+    display: inline-block;
+}
+
+/* Breadcrumb chevron */
+ul.bd-breadcrumbs li.breadcrumb-item:not(.breadcrumb-home):before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    font-weight: 400;
+    content: '\f162';
+}
+
+/* Navbar */
+/* Search */
+.search-button-field svg {
+    display: none;
+}
+
+.search-button-field:before {
+    font-family: 'spark-icon';
+    font-size: 20px;
+    font-weight: 400;
+    content: '\f1df';
+}
+
+/* Right sidebar */
+
+svg:not(:host).svg-inline--fa,
+svg:not(:root).svg-inline--fa {
+    display: none;
+}
+
+div.tocsection.sourcelink a:before {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f198';
+}
+
+.onthispage svg {
+    display: none;
+}
+
+.onthispage:before {
+    font-family: 'spark-icon';
+    font-size: 14px;
+    content: '\f1d9';
+}
diff --git a/intel_sphinx_theme/static/css/global/base.css b/intel_sphinx_theme/static/css/global/base.css
new file mode 100644
index 0000000..c1dacc1
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/base.css
@@ -0,0 +1,190 @@
+* {
+    border-radius: 0 !important;
+}
+
+body {
+    background-color: var(--spark-color-background);
+    color: var(--spark-color-text-base);
+}
+
+p {
+    color: var(--spark-color-text-base);
+}
+
+p > .rubric {
+    border-bottom: 1px solid var(--spark-color-border);
+}
+
+a {
+    color: var(--spark-color-link);
+}
+
+a:visited:not(.nav-link):not(.bd-links a) {
+    color: var(--spark-color-link-visited);
+}
+
+a:hover {
+    color: var(--spark-color-link-hover);
+}
+
+/* a.headerlink {
+    color: hsl(from var(--spark-color-warning) h s 10%);
+} */
+
+a.headerlink::before {
+    color: var(--spark-color-text-muted);
+}
+
+hr {
+    border: 0;
+    border-top: 1px solid var(--spark-color-border);
+}
+
+pre,
+code,
+kbd,
+samp {
+    font-family: var(--spark-font-family-monospace);
+    border-radius: 0;
+}
+
+kbd:not(.compound) {
+    border: 1px solid var(--spark-color-border);
+    box-shadow: 1px 1px 1px var(--spark-color-shadow);
+}
+
+code {
+    color: var(--spark-color-text-base);
+}
+
+pre {
+    background-color: var(--spark-color-surface);
+    color: var(--spark-color-text-base);
+    border: 1px solid var(--spark-color-border);
+}
+
+html[data-theme='dark'] span.highlighted {
+    background-color: var(--spark-color-highlight);
+    color: var(--spark-color-highlight-text-base);
+}
+
+#pst-back-to-top {
+    background-color: var(--spark-color-primary);
+}
+
+.form-control:focus,
+.form-control:focus-visible {
+    outline: 3px solid var(--spark-color-primary);
+    box-shadow: none;
+}
+
+#pst-back-to-top:hover {
+    background-color: var(--spark-color-secondary);
+}
+
+/* Themed image */
+.light-theme {
+    display: none;
+}
+
+:root[data-theme='light'] .light-theme {
+    display: inline;
+}
+
+:root[data-theme='light'] .dark-theme {
+    display: none;
+}
+
+:root[data-theme='dark'] .dark-theme {
+    display: inline;
+}
+
+:root[data-theme='dark'] .light-theme {
+    display: none;
+}
+
+html[data-theme='dark'] .bd-content img:not(.only-dark, .dark-light) {
+    background-color: transparent !important;
+}
+
+html[data-theme='dark'] img:not(.only-dark):not(.dark-light) {
+    filter: none !important;
+}
+
+html[data-theme='dark'] img:not(.only-dark, .dark-light) {
+    filter: none !important;
+}
+
+/* Code block line wrap button */
+.highlight.scrollable .linewrap-button,
+.highlight .linewrap-button {
+    display: none;
+}
+
+.highlight.scrollable:hover .linewrap-button {
+    display: block;
+    cursor: pointer;
+    position: absolute;
+    border: none;
+    width: 1.7em;
+    height: 1.7em;
+    top: 0.3em;
+    right: 2.25em;
+    background-color: var(--pst-color-surface);
+    border-radius: 0.4em;
+    align-items: center;
+    transition:
+        opacity 0.3s,
+        border 0.3s,
+        background-color 0.3s;
+}
+
+.highlight.scrollable .linewrap-button:hover {
+    background-color: var(--pst-color-shadow);
+}
+
+.highlight .linewrap-button svg {
+    fill: var(--pst-color-muted);
+}
+
+.highlight .linewrap-button:hover svg {
+    fill: var(--spark-color-text-base);
+}
+
+pre.wrapped,
+code.wrapped {
+    white-space: pre-wrap;
+    word-wrap: break-word;
+}
+
+.link-list ul li {
+    color: var(--pst-color-link);
+}
+
+.bd-search {
+    border: none;
+}
+
+.toc-entry a.nav-link:hover,
+nav.bd-links li > a:hover,
+ul.bd-breadcrumbs li.breadcrumb-item a:hover,
+a:hover {
+    text-decoration-thickness: max(2px, 0.1rem, 0.12em);
+}
+
+.bd-page-width {
+    max-width: 100%; /* default is 88rem */
+}
+
+.bd-sidebar-primary {
+    max-width: 300px;
+    padding-left: 2rem;
+}
+
+.bd-main .bd-content {
+    justify-content: start;
+}
+
+.bd-header .navbar-header-items {
+    position: unset;
+}
diff --git a/intel_sphinx_theme/static/css/global/global.css b/intel_sphinx_theme/static/css/global/global.css
new file mode 100644
index 0000000..3aec4df
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/global.css
@@ -0,0 +1,234 @@
+html[data-theme='light'] {
+    --spark-color-background: var(--spark-color-theme-light-gray50);
+    --spark-color-layer1: var(--spark-color-theme-light-gray75);
+    --spark-color-layer2: var(--spark-color-theme-light-gray75);
+    --spark-color-text-base: var(--spark-color-theme-light-gray900);
+    --spark-color-text-inverse: var(--spark-color-theme-light-gray50);
+    --spark-color-primary: var(--spark-color-classic-blue);
+    --spark-color-secondary: var(--spark-color-classic-blue-shade1);
+    --spark-color-border: var(--spark-color-theme-light-gray400);
+    --spark-color-link: var(--spark-color-classic-blue);
+    --spark-color-surface: var(--spark-color-theme-light-gray200);
+    /* --spark-color-shadow: var(--spark-color-theme-light-gray900); */
+    --spark-color-text-muted: var(--spark-color-theme-light-gray800);
+    --spark-color-muted: var(--spark-color-theme-light-gray800);
+    --spark-color-link: var(--spark-color-classic-blue);
+    --spark-color-link-visited: #8f5da2;
+    --spark-color-sidebar-toggle: var(--spark-color-theme-light-gray200);
+    --bs-nav-link-color: var(--spark-color-surface);
+    --bs-dropdown-border-radius: 0;
+    --bs-border-radius: 0;
+    --spark-color-info: var(--spark-color-primary);
+}
+
+html[data-theme='light'] {
+    --pst-color-link-hover: var(--spark-color-classic-blue);
+    --pst-color-text-base: var(--spark-color-theme-light-gray900);
+    --pst-color-border: var(--spark-color-theme-light-gray400);
+    --pst-color-link: var(--spark-color-classic-blue);
+    /* --pst-color-shadow: var(--spark-color-theme-light-gray900); */
+    --pst-color-link: var(--spark-color-classic-blue);
+    --pst-color-target: var(--spark-color-classic-blue-tint2);
+    /* Set up base colors */
+    --pst-color-primary: var(--spark-color-classic-blue);
+    --pst-color-primary-highlight: var(--spark-color-classic-blue-shade1);
+    --pst-color-primary-text: var(--spark-color-text-inverse);
+    --pst-color-primary-bg: #ceebfc;
+
+    /* Secondary is moss */
+    --pst-color-secondary: var(--spark-color-electric-moss);
+    --pst-color-secondary-highlight: hsl(from var(--spark-color-electric-moss) h s 80%);
+    --pst-color-secondary-text: var(--spark-color-text-base);
+    --pst-color-secondary-bg: hsl(from var(--spark-color-electric-moss) h s 80%);
+
+    --pst-color-accent: var(--spark-color-classic-blue-shade2);
+    --pst-color-accent-highlight: var(--spark-color-classic-blue-tint2);
+    --pst-color-accent-text: var(--spark-color-text-inverse);
+    --pst-color-accent-bg: var(--spark-color-classic-blue-tint1);
+
+    --pst-color-info: var(--pst-color-primary);
+    --pst-color-info-highlight: var(--pst-color-primary-highlight);
+    --pst-color-info-text: var(--spark-color-text-inverse);
+    --pst-color-info-bg: var(--pst-color-primary-bg);
+
+    --pst-color-success: var(--spark-color-success);
+    --pst-color-success-highlight: var(--spark-color-success-soft);
+    --pst-color-success-text: var(--spark-color-text-inverse);
+    --pst-color-success-bg: var(--spark-color-success-background);
+
+    --pst-color-warning: var(--spark-color-warning);
+    --pst-color-warning-highlight: var(--spark-color-warning-soft);
+    --pst-color-warning-text: var(--spark-color-text);
+    --pst-color-warning-bg: var(--spark-color-warning-background);
+
+    --pst-color-danger: var(--spark-color-error);
+    --pst-color-danger-highlight: var(--spark-color-error-soft);
+    --pst-color-danger-text: var(--spark-color-text-inverse);
+    --pst-color-danger-bg: var(--spark-color-error-background);
+
+    --pst-color-muted: var(--spark-color-theme-light-gray800);
+    --pst-color-muted-text: var(--spark-color-theme-light-gray50);
+    --pst-color-muted-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-muted-bg: var(--spark-color-theme-light-gray800);
+
+    --pst-color-dark: var(--spark-color-theme-light-gray900);
+    --pst-color-dark-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-dark-text: var(--spark-color-theme-light-gray50);
+    --pst-color-dark-bg: var(--spark-color-theme-light-gray900);
+
+    --pst-color-light: var(--spark-color-theme-light-gray50);
+    --pst-color-light-highlight: var(--spark-color-theme-light-gray100);
+    --pst-color-light-text: var(--spark-color-theme-light-gray900);
+    --pst-color-light-bg: var(--spark-color-theme-light-gray50);
+
+    /* White color set */
+    --pst-color-white: var(--spark-color-theme-light-gray50);
+    --pst-color-white-highlight: var(--spark-color-theme-light-gray100);
+    --pst-color-white-text: var(--spark-color-black);
+    --pst-color-white-bg: var(--spark-color-theme-light-gray50);
+
+    /* Black color set */
+    --pst-color-black: var(--spark-color-theme-light-gray900);
+    --pst-color-black-highlight: var(--spark-color-theme-light-gray800);
+    --pst-color-black-text: var(--spark-color-white);
+    --pst-color-black-bg: var(--spark-color-theme-light-gray900);
+
+    /* Layers */
+    --pst-color-background: var(--spark-color-background);
+    --pst-color-on-background: var(--spark-color-layer1);
+    --pst-color-surface: var(--spark-color-layer1);
+    --pst-color-on-surface: var(--spark-color-text-base);
+
+    /* Tables */
+    --pst-color-table: var(--pst-color-on-surface);
+    --pst-color-table-row-hover-bg: var(--spark-color-layer2);
+    --pst-color-table-inner-border: var(--spark-color-border);
+    --pst-color-table-outer-border: var(--pst-color-surface);
+    --pst-color-table-heading-bg: var(--pst-color-surface);
+    --pst-color-table-row-zebra-high-bg: var(--pst-color-on-background);
+    --pst-color-table-row-zebra-low-bg: var(--pst-color-surface);
+    --bs-table-bg: var(--pst-color-background);
+}
+
+html[data-theme='dark'] {
+    --spark-color-background: var(--spark-color-theme-dark-gray50);
+    --spark-color-layer1: var(--spark-color-theme-dark-gray200);
+    --spark-color-layer2: var(--spark-color-theme-dark-gray200);
+    --spark-color-text-base: var(--spark-color-theme-dark-gray900);
+    --spark-color-text-inverse: var(--spark-color-theme-dark-gray50);
+    --spark-color-primary: var(--spark-color-energy-blue);
+    --spark-color-secondary: var(--spark-color-energy-blue-tint1);
+    --spark-color-border: var(--spark-color-theme-dark-gray500);
+    --spark-color-link: var(--spark-color-energy-blue);
+    --spark-color-surface: var(--spark-color-theme-dark-gray200);
+    --spark-color-highlight: var(--spark-color-daisy-tint1);
+    --spark-color-highlight-text-base: var(--spark-color-theme-light-gray900);
+    /* --spark-color-shadow: var(--spark-color-theme-dark-gray900); */
+    --spark-color-text-muted: var(--spark-color-theme-dark-gray800);
+    --spark-color-muted: var(--spark-color-theme-dark-gray800);
+    --spark-color-link: var(--spark-color-energy-blue);
+    --spark-color-link-visited: #eec3f7;
+    --spark-color-sidebar-toggle: var(--spark-color-theme-light-gray200);
+    --bs-dropdown-border-radius: 0;
+    --bs-border-radius: 0;
+    --spark-color-info: var(--spark-color-primary);
+}
+
+html[data-theme='dark'] {
+    --pst-color-link-hover: var(--spark-color-energy-blue);
+    --pst-color-text-base: var(--spark-color-theme-dark-gray900);
+    --pst-color-border: var(--spark-color-theme-dark-gray500);
+    /* --pst-color-shadow: var(--spark-color-theme-dark-gray900); */
+    --pst-color-link: var(--spark-color-primary);
+    --pst-color-target: var(--spark-color-energy-blue-tint2);
+
+    --pst-color-inline-code-links: var(--spark-color-primary);
+
+    /* Set up base colors */
+
+    /* Primary is energy blue */
+    --pst-color-primary: var(--spark-color-energy-blue);
+    --pst-color-primary-highlight: var(--spark-color-energy-blue-tint1);
+    --pst-color-primary-text: var(--spark-color-text-inverse);
+    --pst-color-primary-bg: hsl(from var(--spark-color-energy-blue-shade2) h s 20%);
+
+    /* Secondary is moss */
+    --pst-color-secondary: var(--spark-color-electric-moss);
+    --pst-color-secondary-highlight: var(--spark-color-moss-tint2);
+    --pst-color-secondary-text: var(--spark-color-text-inverse);
+    --pst-color-secondary-bg: hsl(from var(--spark-color-moss-shade2) h s 20%);
+
+    /* Accent is ??? */
+    --pst-color-accent: var(--spark-color-energy-blue-tint2);
+    --pst-color-accent-highlight: var(--spark-color-energy-blue-tint3);
+    --pst-color-accent-text: var(--spark-color-text-inverse);
+    --pst-color-accent-bg: var(--spark-color-energy-blue-tint2);
+
+    /* Info is light classic blue */
+    --pst-color-info: var(--pst-color-primary);
+    --pst-color-info-highlight: var(--pst-color-primary-highlight);
+    --pst-color-info-text: var(--spark-color-text-inverse);
+    --pst-color-info-bg: var(--pst-color-primary-bg);
+
+    /* Success is success green */
+    --pst-color-success: var(--spark-color-success-soft);
+    --pst-color-success-highlight: var(--spark-color-success-natural);
+    --pst-color-success-text: var(--spark-color-text-inverse);
+    --pst-color-success-bg: var(--spark-color-success-background-inverse);
+
+    /* Warning is warning yellow */
+    --pst-color-warning: var(--spark-color-warning-soft);
+    --pst-color-warning-highlight: var(--spark-color-warning-natural);
+    --pst-color-warning-text: var(--spark-color-text-inverse);
+    --pst-color-warning-bg: var(--spark-color-warning-background-inverse);
+
+    /* Danger is error red */
+    --pst-color-danger: var(--spark-color-error-soft);
+    --pst-color-danger-highlight: var(--spark-color-error-natural);
+    --pst-color-danger-text: var(--spark-color-text-inverse);
+    --pst-color-danger-bg: var(--spark-color-error-background-inverse);
+
+    /* Muted is ? */
+    --pst-color-muted: var(--spark-color-theme-dark-gray800);
+    --pst-color-muted-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-muted-text: var(--spark-color-theme-dark-gray50);
+    --pst-color-muted-bg: var(--spark-color-theme-dark-gray800);
+
+    --pst-color-dark: var(--spark-color-theme-dark-gray900);
+    --pst-color-dark-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-dark-text: var(--spark-color-theme-dark-gray50);
+    --pst-color-dark-bg: var(--spark-color-theme-dark-gray900);
+
+    --pst-color-light: var(--spark-color-theme-dark-gray50);
+    --pst-color-light-highlight: var(--spark-color-theme-dark-gray100);
+    --pst-color-light-text: var(--spark-color-theme-dark-gray900);
+    --pst-color-light-bg: var(--spark-color-theme-dark-gray50);
+
+    /* White color set - best to think of as inverse */
+    --pst-color-white: var(--spark-color-theme-dark-gray50);
+    --pst-color-white-highlight: var(--spark-color-theme-dark-gray100);
+    --pst-color-white-text: var(--spark-color-white);
+    --pst-color-white-bg: var(--spark-color-theme-dark-gray50);
+
+    /* Black color set - best to think of as inverse */
+    --pst-color-black: var(--spark-color-theme-dark-gray900);
+    --pst-color-black-highlight: var(--spark-color-theme-dark-gray800);
+    --pst-color-black-text: var(--spark-color-black);
+    --pst-color-black-bg: var(--spark-color-theme-dark-gray900);
+
+    /* Layers */
+    --pst-color-background: var(--spark-color-background);
+    --pst-color-on-background: var(--spark-color-layer1);
+    --pst-color-surface: var(--spark-color-layer1);
+    --pst-color-on-surface: var(--spark-color-text-base);
+
+    /* Tables */
+    --pst-color-table: var(--pst-color-on-surface);
+    --pst-color-table-row-hover-bg: var(--spark-color-layer2);
+    --pst-color-table-inner-border: var(--spark-color-border);
+    --pst-color-table-outer-border: var(--pst-color-surface);
+    --pst-color-table-heading-bg: var(--pst-color-surface);
+    --pst-color-table-row-zebra-high-bg: var(--pst-color-on-background);
+    --pst-color-table-row-zebra-low-bg: var(--pst-color-surface);
+    --bs-table-bg: var(--pst-color-background);
+}
diff --git a/intel_sphinx_theme/static/css/global/icons.css b/intel_sphinx_theme/static/css/global/icons.css
new file mode 100644
index 0000000..3b99fac
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/icons.css
@@ -0,0 +1,1692 @@
+@font-face {
+    font-family: 'spark-icon';
+    src: url('../../fonts/spark-icon-solid.woff2') format('woff2');
+    font-weight: 600;
+    font-style: normal;
+    font-display: block;
+}
+
+@font-face {
+    font-family: 'spark-icon';
+    src: url('../../fonts/spark-icon-regular.woff2') format('woff2');
+    font-weight: 400;
+    font-style: normal;
+    font-display: block;
+}
+
+@font-face {
+    font-family: 'spark-icon';
+    src: url('../../fonts/spark-icon-light.woff2') format('woff2');
+    font-weight: 300;
+    font-style: normal;
+    font-display: block;
+}
+
+.spark-icon:not(.ui) {
+    font-family: 'spark-icon';
+    font-style: normal;
+    display: inline-block;
+    font-variant: normal;
+    text-rendering: auto;
+    line-height: 1;
+}
+
+.spark-icon:not(.ui):not(:empty):before {
+    padding-right: 0.25em;
+}
+.spark-icon:not(.ui).spark-icon-solid {
+    font-weight: 600;
+}
+.spark-icon:not(.ui).spark-icon-regular {
+    font-weight: 400;
+}
+.spark-icon:not(.ui).spark-icon-light {
+    font-weight: 300;
+}
+.spark-icon:not(.ui).spark-icon-spin {
+    animation: spark-icon-spin-animation 2s linear infinite;
+}
+
+.spark-icon:not(.ui).spark-icon-add-user:before {
+    content: '\f101';
+}
+.spark-icon:not(.ui).spark-icon-ai-simple:before {
+    content: '\f102';
+}
+.spark-icon:not(.ui).spark-icon-ai:before {
+    content: '\f103';
+}
+.spark-icon:not(.ui).spark-icon-airplane:before {
+    content: '\f104';
+}
+.spark-icon:not(.ui).spark-icon-alert-circle:before {
+    content: '\f105';
+}
+.spark-icon:not(.ui).spark-icon-alert-triangle:before {
+    content: '\f106';
+}
+.spark-icon:not(.ui).spark-icon-align-center:before {
+    content: '\f107';
+}
+.spark-icon:not(.ui).spark-icon-align-left:before {
+    content: '\f108';
+}
+.spark-icon:not(.ui).spark-icon-align-right:before {
+    content: '\f109';
+}
+.spark-icon:not(.ui).spark-icon-application-android:before {
+    content: '\f10a';
+}
+.spark-icon:not(.ui).spark-icon-application-window:before {
+    content: '\f10b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-bidirectional-h:before {
+    content: '\f10c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-bidirectional-v:before {
+    content: '\f10d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-down:before {
+    content: '\f10e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-fork-h:before {
+    content: '\f10f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down-left:before {
+    content: '\f110';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down-right:before {
+    content: '\f111';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-down:before {
+    content: '\f112';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-left:before {
+    content: '\f113';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-right:before {
+    content: '\f114';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up-left:before {
+    content: '\f115';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up-right:before {
+    content: '\f116';
+}
+.spark-icon:not(.ui).spark-icon-arrow-large-up:before {
+    content: '\f117';
+}
+.spark-icon:not(.ui).spark-icon-arrow-left:before {
+    content: '\f118';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-bidirectional-h:before {
+    content: '\f119';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-bidirectional-v:before {
+    content: '\f11a';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-down:before {
+    content: '\f11b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-left:before {
+    content: '\f11c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-opposite-h:before {
+    content: '\f11d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-opposite-v:before {
+    content: '\f11e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-right:before {
+    content: '\f11f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-long-up:before {
+    content: '\f120';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-left:before {
+    content: '\f121';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-right:before {
+    content: '\f122';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-slash-left:before {
+    content: '\f123';
+}
+.spark-icon:not(.ui).spark-icon-arrow-mass-slash-right:before {
+    content: '\f124';
+}
+.spark-icon:not(.ui).spark-icon-arrow-opposite-h:before {
+    content: '\f125';
+}
+.spark-icon:not(.ui).spark-icon-arrow-opposite-v:before {
+    content: '\f126';
+}
+.spark-icon:not(.ui).spark-icon-arrow-right:before {
+    content: '\f127';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-bidirectional-h:before {
+    content: '\f128';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-bidirectional-v:before {
+    content: '\f129';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-down:before {
+    content: '\f12a';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-left:before {
+    content: '\f12b';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-opposite-h:before {
+    content: '\f12c';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-opposite-v:before {
+    content: '\f12d';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-right:before {
+    content: '\f12e';
+}
+.spark-icon:not(.ui).spark-icon-arrow-small-up:before {
+    content: '\f12f';
+}
+.spark-icon:not(.ui).spark-icon-arrow-up:before {
+    content: '\f130';
+}
+.spark-icon:not(.ui).spark-icon-auto-format:before {
+    content: '\f131';
+}
+.spark-icon:not(.ui).spark-icon-backward:before {
+    content: '\f132';
+}
+.spark-icon:not(.ui).spark-icon-battery-charging:before {
+    content: '\f133';
+}
+.spark-icon:not(.ui).spark-icon-battery-critical:before {
+    content: '\f134';
+}
+.spark-icon:not(.ui).spark-icon-battery-empty:before {
+    content: '\f135';
+}
+.spark-icon:not(.ui).spark-icon-battery-full:before {
+    content: '\f136';
+}
+.spark-icon:not(.ui).spark-icon-battery-high:before {
+    content: '\f137';
+}
+.spark-icon:not(.ui).spark-icon-battery-low:before {
+    content: '\f138';
+}
+.spark-icon:not(.ui).spark-icon-battery-medium:before {
+    content: '\f139';
+}
+.spark-icon:not(.ui).spark-icon-bell:before {
+    content: '\f13a';
+}
+.spark-icon:not(.ui).spark-icon-blade-server:before {
+    content: '\f13b';
+}
+.spark-icon:not(.ui).spark-icon-bloch-sphere:before {
+    content: '\f13c';
+}
+.spark-icon:not(.ui).spark-icon-body:before {
+    content: '\f13d';
+}
+.spark-icon:not(.ui).spark-icon-bookmark:before {
+    content: '\f13e';
+}
+.spark-icon:not(.ui).spark-icon-bookshelf:before {
+    content: '\f13f';
+}
+.spark-icon:not(.ui).spark-icon-brand-fga:before {
+    content: '\f140';
+}
+.spark-icon:not(.ui).spark-icon-bulb:before {
+    content: '\f141';
+}
+.spark-icon:not(.ui).spark-icon-calendar:before {
+    content: '\f142';
+}
+.spark-icon:not(.ui).spark-icon-camera:before {
+    content: '\f143';
+}
+.spark-icon:not(.ui).spark-icon-caret-down:before {
+    content: '\f144';
+}
+.spark-icon:not(.ui).spark-icon-caret-left:before {
+    content: '\f145';
+}
+.spark-icon:not(.ui).spark-icon-caret-right:before {
+    content: '\f146';
+}
+.spark-icon:not(.ui).spark-icon-caret-up:before {
+    content: '\f147';
+}
+.spark-icon:not(.ui).spark-icon-cellular-critical:before {
+    content: '\f148';
+}
+.spark-icon:not(.ui).spark-icon-cellular-full:before {
+    content: '\f149';
+}
+.spark-icon:not(.ui).spark-icon-cellular-high:before {
+    content: '\f14a';
+}
+.spark-icon:not(.ui).spark-icon-cellular-low:before {
+    content: '\f14b';
+}
+.spark-icon:not(.ui).spark-icon-cellular-medium:before {
+    content: '\f14c';
+}
+.spark-icon:not(.ui).spark-icon-chain-connect:before {
+    content: '\f14d';
+}
+.spark-icon:not(.ui).spark-icon-chain-disconnect:before {
+    content: '\f14e';
+}
+.spark-icon:not(.ui).spark-icon-chart:before {
+    content: '\f14f';
+}
+.spark-icon:not(.ui).spark-icon-check-circle:before {
+    content: '\f150';
+}
+.spark-icon:not(.ui).spark-icon-check:before {
+    content: '\f151';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-empty:before {
+    content: '\f152';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-partially:before {
+    content: '\f153';
+}
+.spark-icon:not(.ui).spark-icon-checkbox-selected:before {
+    content: '\f154';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-down:before {
+    content: '\f155';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-left:before {
+    content: '\f156';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-right:before {
+    content: '\f157';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-down:before {
+    content: '\f158';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-left:before {
+    content: '\f159';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-right:before {
+    content: '\f15a';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-small-up:before {
+    content: '\f15b';
+}
+.spark-icon:not(.ui).spark-icon-chevron-double-up:before {
+    content: '\f15c';
+}
+.spark-icon:not(.ui).spark-icon-chevron-down:before {
+    content: '\f15d';
+}
+.spark-icon:not(.ui).spark-icon-chevron-left:before {
+    content: '\f15e';
+}
+.spark-icon:not(.ui).spark-icon-chevron-right:before {
+    content: '\f15f';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-down:before {
+    content: '\f160';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-left:before {
+    content: '\f161';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-right:before {
+    content: '\f162';
+}
+.spark-icon:not(.ui).spark-icon-chevron-small-up:before {
+    content: '\f163';
+}
+.spark-icon:not(.ui).spark-icon-chevron-up:before {
+    content: '\f164';
+}
+.spark-icon:not(.ui).spark-icon-chip-alt:before {
+    content: '\f165';
+}
+.spark-icon:not(.ui).spark-icon-chip:before {
+    content: '\f166';
+}
+.spark-icon:not(.ui).spark-icon-circle:before {
+    content: '\f167';
+}
+.spark-icon:not(.ui).spark-icon-clamp:before {
+    content: '\f168';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-arrow-left:before {
+    content: '\f169';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-arrow-right:before {
+    content: '\f16a';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-backward:before {
+    content: '\f16b';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-forward:before {
+    content: '\f16c';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-list:before {
+    content: '\f16d';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-play:before {
+    content: '\f16e';
+}
+.spark-icon:not(.ui).spark-icon-clipboard-text:before {
+    content: '\f16f';
+}
+.spark-icon:not(.ui).spark-icon-clipboard:before {
+    content: '\f170';
+}
+.spark-icon:not(.ui).spark-icon-cloud-download:before {
+    content: '\f171';
+}
+.spark-icon:not(.ui).spark-icon-cloud-error:before {
+    content: '\f172';
+}
+.spark-icon:not(.ui).spark-icon-cloud-off:before {
+    content: '\f173';
+}
+.spark-icon:not(.ui).spark-icon-cloud-success:before {
+    content: '\f174';
+}
+.spark-icon:not(.ui).spark-icon-cloud-upload:before {
+    content: '\f175';
+}
+.spark-icon:not(.ui).spark-icon-cloud:before {
+    content: '\f176';
+}
+.spark-icon:not(.ui).spark-icon-collapse-all:before {
+    content: '\f177';
+}
+.spark-icon:not(.ui).spark-icon-columns:before {
+    content: '\f178';
+}
+.spark-icon:not(.ui).spark-icon-command-line:before {
+    content: '\f179';
+}
+.spark-icon:not(.ui).spark-icon-comment-dots:before {
+    content: '\f17a';
+}
+.spark-icon:not(.ui).spark-icon-comment:before {
+    content: '\f17b';
+}
+.spark-icon:not(.ui).spark-icon-comments:before {
+    content: '\f17c';
+}
+.spark-icon:not(.ui).spark-icon-compass:before {
+    content: '\f17d';
+}
+.spark-icon:not(.ui).spark-icon-copy:before {
+    content: '\f17e';
+}
+.spark-icon:not(.ui).spark-icon-cpu-brain:before {
+    content: '\f17f';
+}
+.spark-icon:not(.ui).spark-icon-cpu:before {
+    content: '\f180';
+}
+.spark-icon:not(.ui).spark-icon-create-subresource:before {
+    content: '\f181';
+}
+.spark-icon:not(.ui).spark-icon-cross-circle:before {
+    content: '\f182';
+}
+.spark-icon:not(.ui).spark-icon-cross:before {
+    content: '\f183';
+}
+.spark-icon:not(.ui).spark-icon-crossroads-sign:before {
+    content: '\f184';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached:before {
+    content: '\f185';
+}
+.spark-icon:not(.ui).spark-icon-cube:before {
+    content: '\f186';
+}
+.spark-icon:not(.ui).spark-icon-database:before {
+    content: '\f187';
+}
+.spark-icon:not(.ui).spark-icon-deny:before {
+    content: '\f188';
+}
+.spark-icon:not(.ui).spark-icon-dependency:before {
+    content: '\f189';
+}
+.spark-icon:not(.ui).spark-icon-desk-phone:before {
+    content: '\f18a';
+}
+.spark-icon:not(.ui).spark-icon-desktop-shortcuts:before {
+    content: '\f18b';
+}
+.spark-icon:not(.ui).spark-icon-desktop:before {
+    content: '\f18c';
+}
+.spark-icon:not(.ui).spark-icon-digits-circle:before {
+    content: '\f18d';
+}
+.spark-icon:not(.ui).spark-icon-direction:before {
+    content: '\f18e';
+}
+.spark-icon:not(.ui).spark-icon-dislike:before {
+    content: '\f18f';
+}
+.spark-icon:not(.ui).spark-icon-document-arrow-right:before {
+    content: '\f190';
+}
+.spark-icon:not(.ui).spark-icon-document-code:before {
+    content: '\f191';
+}
+.spark-icon:not(.ui).spark-icon-document-diagram:before {
+    content: '\f192';
+}
+.spark-icon:not(.ui).spark-icon-document-gear:before {
+    content: '\f193';
+}
+.spark-icon:not(.ui).spark-icon-document-graph:before {
+    content: '\f194';
+}
+.spark-icon:not(.ui).spark-icon-document-list:before {
+    content: '\f195';
+}
+.spark-icon:not(.ui).spark-icon-document-plus:before {
+    content: '\f196';
+}
+.spark-icon:not(.ui).spark-icon-document-text-slash:before {
+    content: '\f197';
+}
+.spark-icon:not(.ui).spark-icon-document-text:before {
+    content: '\f198';
+}
+.spark-icon:not(.ui).spark-icon-document:before {
+    content: '\f199';
+}
+.spark-icon:not(.ui).spark-icon-download:before {
+    content: '\f19a';
+}
+.spark-icon:not(.ui).spark-icon-drag:before {
+    content: '\f19b';
+}
+.spark-icon:not(.ui).spark-icon-edit:before {
+    content: '\f19c';
+}
+.spark-icon:not(.ui).spark-icon-ellipse-vertical:before {
+    content: '\f19d';
+}
+.spark-icon:not(.ui).spark-icon-ellipse:before {
+    content: '\f19e';
+}
+.spark-icon:not(.ui).spark-icon-ellipsis-h:before {
+    content: '\f19f';
+}
+.spark-icon:not(.ui).spark-icon-ellipsis-v:before {
+    content: '\f1a0';
+}
+.spark-icon:not(.ui).spark-icon-email:before {
+    content: '\f1a1';
+}
+.spark-icon:not(.ui).spark-icon-energy:before {
+    content: '\f1a2';
+}
+.spark-icon:not(.ui).spark-icon-expand-all:before {
+    content: '\f1a3';
+}
+.spark-icon:not(.ui).spark-icon-external-link:before {
+    content: '\f1a4';
+}
+.spark-icon:not(.ui).spark-icon-eye-slash:before {
+    content: '\f1a5';
+}
+.spark-icon:not(.ui).spark-icon-eye:before {
+    content: '\f1a6';
+}
+.spark-icon:not(.ui).spark-icon-filter-cancel:before {
+    content: '\f1a7';
+}
+.spark-icon:not(.ui).spark-icon-filter:before {
+    content: '\f1a8';
+}
+.spark-icon:not(.ui).spark-icon-fire:before {
+    content: '\f1a9';
+}
+.spark-icon:not(.ui).spark-icon-fit-screen:before {
+    content: '\f1aa';
+}
+.spark-icon:not(.ui).spark-icon-flag:before {
+    content: '\f1ab';
+}
+.spark-icon:not(.ui).spark-icon-flame-chart:before {
+    content: '\f1ac';
+}
+.spark-icon:not(.ui).spark-icon-folder-add:before {
+    content: '\f1ad';
+}
+.spark-icon:not(.ui).spark-icon-folder-arrow-right:before {
+    content: '\f1ae';
+}
+.spark-icon:not(.ui).spark-icon-folder-user:before {
+    content: '\f1af';
+}
+.spark-icon:not(.ui).spark-icon-folder:before {
+    content: '\f1b0';
+}
+.spark-icon:not(.ui).spark-icon-forward:before {
+    content: '\f1b1';
+}
+.spark-icon:not(.ui).spark-icon-frame-copy:before {
+    content: '\f1b2';
+}
+.spark-icon:not(.ui).spark-icon-frame:before {
+    content: '\f1b3';
+}
+.spark-icon:not(.ui).spark-icon-full-zoom-in:before {
+    content: '\f1b4';
+}
+.spark-icon:not(.ui).spark-icon-full-zoom-out:before {
+    content: '\f1b5';
+}
+.spark-icon:not(.ui).spark-icon-function:before {
+    content: '\f1b6';
+}
+.spark-icon:not(.ui).spark-icon-gauge:before {
+    content: '\f1b7';
+}
+.spark-icon:not(.ui).spark-icon-gear:before {
+    content: '\f1b8';
+}
+.spark-icon:not(.ui).spark-icon-gears:before {
+    content: '\f1b9';
+}
+.spark-icon:not(.ui).spark-icon-globe-pointer:before {
+    content: '\f1ba';
+}
+.spark-icon:not(.ui).spark-icon-globe:before {
+    content: '\f1bb';
+}
+.spark-icon:not(.ui).spark-icon-gpu:before {
+    content: '\f1bc';
+}
+.spark-icon:not(.ui).spark-icon-graph-chart:before {
+    content: '\f1bd';
+}
+.spark-icon:not(.ui).spark-icon-graph:before {
+    content: '\f1be';
+}
+.spark-icon:not(.ui).spark-icon-grid:before {
+    content: '\f1bf';
+}
+.spark-icon:not(.ui).spark-icon-hand:before {
+    content: '\f1c0';
+}
+.spark-icon:not(.ui).spark-icon-handset:before {
+    content: '\f1c1';
+}
+.spark-icon:not(.ui).spark-icon-head-with-brain:before {
+    content: '\f1c2';
+}
+.spark-icon:not(.ui).spark-icon-head-with-speech:before {
+    content: '\f1c3';
+}
+.spark-icon:not(.ui).spark-icon-heart:before {
+    content: '\f1c4';
+}
+.spark-icon:not(.ui).spark-icon-heat-map:before {
+    content: '\f1c5';
+}
+.spark-icon:not(.ui).spark-icon-help-circle:before {
+    content: '\f1c6';
+}
+.spark-icon:not(.ui).spark-icon-help-comment:before {
+    content: '\f1c7';
+}
+.spark-icon:not(.ui).spark-icon-hexagon:before {
+    content: '\f1c8';
+}
+.spark-icon:not(.ui).spark-icon-home:before {
+    content: '\f1c9';
+}
+.spark-icon:not(.ui).spark-icon-hourglass:before {
+    content: '\f1ca';
+}
+.spark-icon:not(.ui).spark-icon-human-alt:before {
+    content: '\f1cb';
+}
+.spark-icon:not(.ui).spark-icon-human:before {
+    content: '\f1cc';
+}
+.spark-icon:not(.ui).spark-icon-icicle-chart:before {
+    content: '\f1cd';
+}
+.spark-icon:not(.ui).spark-icon-information-circle:before {
+    content: '\f1ce';
+}
+.spark-icon:not(.ui).spark-icon-inherited:before {
+    content: '\f1cf';
+}
+.spark-icon:not(.ui).spark-icon-key:before {
+    content: '\f1d0';
+}
+.spark-icon:not(.ui).spark-icon-keyboard:before {
+    content: '\f1d1';
+}
+.spark-icon:not(.ui).spark-icon-laptop-arrow-down:before {
+    content: '\f1d2';
+}
+.spark-icon:not(.ui).spark-icon-laptop:before {
+    content: '\f1d3';
+}
+.spark-icon:not(.ui).spark-icon-laptops:before {
+    content: '\f1d4';
+}
+.spark-icon:not(.ui).spark-icon-layout-horizontal:before {
+    content: '\f1d5';
+}
+.spark-icon:not(.ui).spark-icon-layout-vertical:before {
+    content: '\f1d6';
+}
+.spark-icon:not(.ui).spark-icon-letters-circle:before {
+    content: '\f1d7';
+}
+.spark-icon:not(.ui).spark-icon-like:before {
+    content: '\f1d8';
+}
+.spark-icon:not(.ui).spark-icon-list:before {
+    content: '\f1d9';
+}
+.spark-icon:not(.ui).spark-icon-lock:before {
+    content: '\f1da';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-area:before {
+    content: '\f1db';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-cancel:before {
+    content: '\f1dc';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-minus:before {
+    content: '\f1dd';
+}
+.spark-icon:not(.ui).spark-icon-magnifier-plus:before {
+    content: '\f1de';
+}
+.spark-icon:not(.ui).spark-icon-magnifier:before {
+    content: '\f1df';
+}
+.spark-icon:not(.ui).spark-icon-match-whole-word:before {
+    content: '\f1e0';
+}
+.spark-icon:not(.ui).spark-icon-maximize:before {
+    content: '\f1e1';
+}
+.spark-icon:not(.ui).spark-icon-megaphone:before {
+    content: '\f1e2';
+}
+.spark-icon:not(.ui).spark-icon-memory-card:before {
+    content: '\f1e3';
+}
+.spark-icon:not(.ui).spark-icon-menu:before {
+    content: '\f1e4';
+}
+.spark-icon:not(.ui).spark-icon-microphone:before {
+    content: '\f1e5';
+}
+.spark-icon:not(.ui).spark-icon-millisecond:before {
+    content: '\f1e6';
+}
+.spark-icon:not(.ui).spark-icon-minus-circle:before {
+    content: '\f1e7';
+}
+.spark-icon:not(.ui).spark-icon-minus:before {
+    content: '\f1e8';
+}
+.spark-icon:not(.ui).spark-icon-mirror:before {
+    content: '\f1e9';
+}
+.spark-icon:not(.ui).spark-icon-mouse-left-click:before {
+    content: '\f1ea';
+}
+.spark-icon:not(.ui).spark-icon-mouse-right-click:before {
+    content: '\f1eb';
+}
+.spark-icon:not(.ui).spark-icon-mouse:before {
+    content: '\f1ec';
+}
+.spark-icon:not(.ui).spark-icon-network:before {
+    content: '\f1ed';
+}
+.spark-icon:not(.ui).spark-icon-object-selection:before {
+    content: '\f1ee';
+}
+.spark-icon:not(.ui).spark-icon-octagon:before {
+    content: '\f1ef';
+}
+.spark-icon:not(.ui).spark-icon-on-off:before {
+    content: '\f1f0';
+}
+.spark-icon:not(.ui).spark-icon-parallelogram:before {
+    content: '\f1f1';
+}
+.spark-icon:not(.ui).spark-icon-pause:before {
+    content: '\f1f2';
+}
+.spark-icon:not(.ui).spark-icon-pencil:before {
+    content: '\f1f3';
+}
+.spark-icon:not(.ui).spark-icon-pentagon:before {
+    content: '\f1f4';
+}
+.spark-icon:not(.ui).spark-icon-picture:before {
+    content: '\f1f5';
+}
+.spark-icon:not(.ui).spark-icon-pie-chart:before {
+    content: '\f1f6';
+}
+.spark-icon:not(.ui).spark-icon-pill-vertical:before {
+    content: '\f1f7';
+}
+.spark-icon:not(.ui).spark-icon-pill:before {
+    content: '\f1f8';
+}
+.spark-icon:not(.ui).spark-icon-pin-h:before {
+    content: '\f1f9';
+}
+.spark-icon:not(.ui).spark-icon-pin:before {
+    content: '\f1fa';
+}
+.spark-icon:not(.ui).spark-icon-play-pause:before {
+    content: '\f1fb';
+}
+.spark-icon:not(.ui).spark-icon-play:before {
+    content: '\f1fc';
+}
+.spark-icon:not(.ui).spark-icon-plugins:before {
+    content: '\f1fd';
+}
+.spark-icon:not(.ui).spark-icon-plus-circle:before {
+    content: '\f1fe';
+}
+.spark-icon:not(.ui).spark-icon-plus:before {
+    content: '\f1ff';
+}
+.spark-icon:not(.ui).spark-icon-point-pushpull:before {
+    content: '\f200';
+}
+.spark-icon:not(.ui).spark-icon-point-selector:before {
+    content: '\f201';
+}
+.spark-icon:not(.ui).spark-icon-pointer-area:before {
+    content: '\f202';
+}
+.spark-icon:not(.ui).spark-icon-pointer:before {
+    content: '\f203';
+}
+.spark-icon:not(.ui).spark-icon-printer:before {
+    content: '\f204';
+}
+.spark-icon:not(.ui).spark-icon-pulse:before {
+    content: '\f205';
+}
+.spark-icon:not(.ui).spark-icon-quartered-circle:before {
+    content: '\f206';
+}
+.spark-icon:not(.ui).spark-icon-rack-mount:before {
+    content: '\f207';
+}
+.spark-icon:not(.ui).spark-icon-radiobutton-empty:before {
+    content: '\f208';
+}
+.spark-icon:not(.ui).spark-icon-radiobutton-selected:before {
+    content: '\f209';
+}
+.spark-icon:not(.ui).spark-icon-random:before {
+    content: '\f20a';
+}
+.spark-icon:not(.ui).spark-icon-rectangle-vertical:before {
+    content: '\f20b';
+}
+.spark-icon:not(.ui).spark-icon-rectangle:before {
+    content: '\f20c';
+}
+.spark-icon:not(.ui).spark-icon-recycle:before {
+    content: '\f20d';
+}
+.spark-icon:not(.ui).spark-icon-redo-dotted:before {
+    content: '\f20e';
+}
+.spark-icon:not(.ui).spark-icon-redo-half-dotted:before {
+    content: '\f20f';
+}
+.spark-icon:not(.ui).spark-icon-redo-square:before {
+    content: '\f210';
+}
+.spark-icon:not(.ui).spark-icon-redo:before {
+    content: '\f211';
+}
+.spark-icon:not(.ui).spark-icon-refresh-gear:before {
+    content: '\f212';
+}
+.spark-icon:not(.ui).spark-icon-refresh-play:before {
+    content: '\f213';
+}
+.spark-icon:not(.ui).spark-icon-refresh:before {
+    content: '\f214';
+}
+.spark-icon:not(.ui).spark-icon-register:before {
+    content: '\f215';
+}
+.spark-icon:not(.ui).spark-icon-repeat:before {
+    content: '\f216';
+}
+.spark-icon:not(.ui).spark-icon-replay:before {
+    content: '\f217';
+}
+.spark-icon:not(.ui).spark-icon-rhombus:before {
+    content: '\f218';
+}
+.spark-icon:not(.ui).spark-icon-robot:before {
+    content: '\f219';
+}
+.spark-icon:not(.ui).spark-icon-rotary-phone:before {
+    content: '\f21a';
+}
+.spark-icon:not(.ui).spark-icon-scissors:before {
+    content: '\f21b';
+}
+.spark-icon:not(.ui).spark-icon-scope:before {
+    content: '\f21c';
+}
+.spark-icon:not(.ui).spark-icon-shading-rate:before {
+    content: '\f21d';
+}
+.spark-icon:not(.ui).spark-icon-shapes:before {
+    content: '\f21e';
+}
+.spark-icon:not(.ui).spark-icon-share:before {
+    content: '\f21f';
+}
+.spark-icon:not(.ui).spark-icon-shield-check:before {
+    content: '\f220';
+}
+.spark-icon:not(.ui).spark-icon-shield-disabled:before {
+    content: '\f221';
+}
+.spark-icon:not(.ui).spark-icon-shield:before {
+    content: '\f222';
+}
+.spark-icon:not(.ui).spark-icon-show-all:before {
+    content: '\f223';
+}
+.spark-icon:not(.ui).spark-icon-sigma:before {
+    content: '\f224';
+}
+.spark-icon:not(.ui).spark-icon-sign-in:before {
+    content: '\f225';
+}
+.spark-icon:not(.ui).spark-icon-sign-out:before {
+    content: '\f226';
+}
+.spark-icon:not(.ui).spark-icon-signal-alt:before {
+    content: '\f227';
+}
+.spark-icon:not(.ui).spark-icon-signal:before {
+    content: '\f228';
+}
+.spark-icon:not(.ui).spark-icon-simple-ps:before {
+    content: '\f229';
+}
+.spark-icon:not(.ui).spark-icon-skip-backward:before {
+    content: '\f22a';
+}
+.spark-icon:not(.ui).spark-icon-skip-forward:before {
+    content: '\f22b';
+}
+.spark-icon:not(.ui).spark-icon-sliders:before {
+    content: '\f22c';
+}
+.spark-icon:not(.ui).spark-icon-sort-order:before {
+    content: '\f22d';
+}
+.spark-icon:not(.ui).spark-icon-sound-off:before {
+    content: '\f22e';
+}
+.spark-icon:not(.ui).spark-icon-sound-on:before {
+    content: '\f22f';
+}
+.spark-icon:not(.ui).spark-icon-sound:before {
+    content: '\f230';
+}
+.spark-icon:not(.ui).spark-icon-source-type-metric:before {
+    content: '\f231';
+}
+.spark-icon:not(.ui).spark-icon-square-handles-rotate:before {
+    content: '\f232';
+}
+.spark-icon:not(.ui).spark-icon-square-handles:before {
+    content: '\f233';
+}
+.spark-icon:not(.ui).spark-icon-square:before {
+    content: '\f234';
+}
+.spark-icon:not(.ui).spark-icon-squares-handles:before {
+    content: '\f235';
+}
+.spark-icon:not(.ui).spark-icon-stack:before {
+    content: '\f236';
+}
+.spark-icon:not(.ui).spark-icon-star:before {
+    content: '\f237';
+}
+.spark-icon:not(.ui).spark-icon-stop:before {
+    content: '\f238';
+}
+.spark-icon:not(.ui).spark-icon-stream:before {
+    content: '\f239';
+}
+.spark-icon:not(.ui).spark-icon-sun-half:before {
+    content: '\f23a';
+}
+.spark-icon:not(.ui).spark-icon-sun:before {
+    content: '\f23b';
+}
+.spark-icon:not(.ui).spark-icon-table:before {
+    content: '\f23c';
+}
+.spark-icon:not(.ui).spark-icon-tag-add:before {
+    content: '\f23d';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-1:before {
+    content: '\f23e';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-2:before {
+    content: '\f23f';
+}
+.spark-icon:not(.ui).spark-icon-tag-alt-3:before {
+    content: '\f240';
+}
+.spark-icon:not(.ui).spark-icon-tag-group-add:before {
+    content: '\f241';
+}
+.spark-icon:not(.ui).spark-icon-tag-group:before {
+    content: '\f242';
+}
+.spark-icon:not(.ui).spark-icon-tag:before {
+    content: '\f243';
+}
+.spark-icon:not(.ui).spark-icon-target-check:before {
+    content: '\f244';
+}
+.spark-icon:not(.ui).spark-icon-target:before {
+    content: '\f245';
+}
+.spark-icon:not(.ui).spark-icon-task-dependency:before {
+    content: '\f246';
+}
+.spark-icon:not(.ui).spark-icon-task-range:before {
+    content: '\f247';
+}
+.spark-icon:not(.ui).spark-icon-team:before {
+    content: '\f248';
+}
+.spark-icon:not(.ui).spark-icon-thumbnails-view:before {
+    content: '\f249';
+}
+.spark-icon:not(.ui).spark-icon-time-check:before {
+    content: '\f24a';
+}
+.spark-icon:not(.ui).spark-icon-time:before {
+    content: '\f24b';
+}
+.spark-icon:not(.ui).spark-icon-timeout-warning:before {
+    content: '\f24c';
+}
+.spark-icon:not(.ui).spark-icon-trace-app:before {
+    content: '\f24d';
+}
+.spark-icon:not(.ui).spark-icon-trapezoid:before {
+    content: '\f24e';
+}
+.spark-icon:not(.ui).spark-icon-trash:before {
+    content: '\f24f';
+}
+.spark-icon:not(.ui).spark-icon-triangle:before {
+    content: '\f250';
+}
+.spark-icon:not(.ui).spark-icon-undo-dotted:before {
+    content: '\f251';
+}
+.spark-icon:not(.ui).spark-icon-undo-half-dotted:before {
+    content: '\f252';
+}
+.spark-icon:not(.ui).spark-icon-undo-square:before {
+    content: '\f253';
+}
+.spark-icon:not(.ui).spark-icon-undo:before {
+    content: '\f254';
+}
+.spark-icon:not(.ui).spark-icon-unlock:before {
+    content: '\f255';
+}
+.spark-icon:not(.ui).spark-icon-update-failure:before {
+    content: '\f256';
+}
+.spark-icon:not(.ui).spark-icon-update-success:before {
+    content: '\f257';
+}
+.spark-icon:not(.ui).spark-icon-upload:before {
+    content: '\f258';
+}
+.spark-icon:not(.ui).spark-icon-user-circle:before {
+    content: '\f259';
+}
+.spark-icon:not(.ui).spark-icon-user-globe:before {
+    content: '\f25a';
+}
+.spark-icon:not(.ui).spark-icon-user:before {
+    content: '\f25b';
+}
+.spark-icon:not(.ui).spark-icon-users:before {
+    content: '\f25c';
+}
+.spark-icon:not(.ui).spark-icon-watershed:before {
+    content: '\f25d';
+}
+.spark-icon:not(.ui).spark-icon-window-charging:before {
+    content: '\f25e';
+}
+.spark-icon:not(.ui).spark-icon-wrench:before {
+    content: '\f25f';
+}
+.spark-icon:not(.ui).spark-icon-zoom-out-selection:before {
+    content: '\f260';
+}
+.spark-icon:not(.ui).spark-icon-zoom-to-selection:before {
+    content: '\f261';
+}
+.spark-icon:not(.ui).spark-icon-alert:before {
+    content: '\f262';
+}
+.spark-icon:not(.ui).spark-icon-clip:before {
+    content: '\f263';
+}
+.spark-icon:not(.ui).spark-icon-contract:before {
+    content: '\f264';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-left:before {
+    content: '\f265';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-right:before {
+    content: '\f266';
+}
+.spark-icon:not(.ui).spark-icon-cube-detached-top:before {
+    content: '\f267';
+}
+.spark-icon:not(.ui).spark-icon-ear:before {
+    content: '\f268';
+}
+.spark-icon:not(.ui).spark-icon-expand:before {
+    content: '\f269';
+}
+.spark-icon:not(.ui).spark-icon-hash:before {
+    content: '\f26a';
+}
+.spark-icon:not(.ui).spark-icon-help:before {
+    content: '\f26b';
+}
+.spark-icon:not(.ui).spark-icon-information:before {
+    content: '\f26c';
+}
+.spark-icon:not(.ui).spark-icon-lasso:before {
+    content: '\f26d';
+}
+.spark-icon:not(.ui).spark-icon-line-mapping:before {
+    content: '\f26e';
+}
+.spark-icon:not(.ui).spark-icon-line:before {
+    content: '\f26f';
+}
+.spark-icon:not(.ui).spark-icon-magic-wand:before {
+    content: '\f270';
+}
+.spark-icon:not(.ui).spark-icon-shapes-exclude:before {
+    content: '\f271';
+}
+.spark-icon:not(.ui).spark-icon-shapes-intersect:before {
+    content: '\f272';
+}
+.spark-icon:not(.ui).spark-icon-shapes-subtract:before {
+    content: '\f273';
+}
+.spark-icon:not(.ui).spark-icon-shapes-union:before {
+    content: '\f274';
+}
+.spark-icon:not(.ui).spark-icon-source-line-mapping:before {
+    content: '\f275';
+}
+.spark-icon:not(.ui).spark-icon-spinner-bg:before {
+    content: '\f276';
+}
+.spark-icon:not(.ui).spark-icon-spinner-quarter-half:before {
+    content: '\f277';
+}
+.spark-icon:not(.ui).spark-icon-spinner-quarter:before {
+    content: '\f278';
+}
+.spark-icon:not(.ui).spark-icon-spinner-three-quarters-half:before {
+    content: '\f279';
+}
+.spark-icon:not(.ui).spark-icon-spinner-three-quarters:before {
+    content: '\f27a';
+}
+.spark-icon:not(.ui).spark-icon-tag-revisit-alt-1:before {
+    content: '\f27b';
+}
+.spark-icon:not(.ui).spark-icon-tag-revisit:before {
+    content: '\f27c';
+}
+.spark-icon:not(.ui).spark-icon-three-dots-circle:before {
+    content: '\f27d';
+}
+.spark-icon:not(.ui).spark-icon-time-refresh:before {
+    content: '\f27e';
+}
+.spark-icon:not(.ui).spark-icon-build-cube:before {
+    content: '\f27f';
+}
+.spark-icon:not(.ui).spark-icon-cloud-loader:before {
+    content: '\f280';
+}
+.spark-icon:not(.ui).spark-icon-circle-half-fill:before {
+    content: '\f281';
+}
+.spark-icon:not(.ui).spark-icon-application-window-alt:before {
+    content: '\f282';
+}
+.spark-icon:not(.ui).spark-icon-host-error:before {
+    content: '\f283';
+}
+.spark-icon:not(.ui).spark-icon-host-fail:before {
+    content: '\f284';
+}
+.spark-icon:not(.ui).spark-icon-host-info:before {
+    content: '\f285';
+}
+.spark-icon:not(.ui).spark-icon-host-settings-alt:before {
+    content: '\f286';
+}
+.spark-icon:not(.ui).spark-icon-host-settings:before {
+    content: '\f287';
+}
+.spark-icon:not(.ui).spark-icon-host-success:before {
+    content: '\f288';
+}
+.spark-icon:not(.ui).spark-icon-host:before {
+    content: '\f289';
+}
+.spark-icon:not(.ui).spark-icon-location:before {
+    content: '\f28a';
+}
+
+@keyframes spark-icon-spin-animation {
+    0% {
+        transform: rotate(0deg);
+    }
+    100% {
+        transform: rotate(360deg);
+    }
+}
+
+:root {
+    --spark-icon-add-user: '\f101';
+    --spark-icon-ai-simple: '\f102';
+    --spark-icon-ai: '\f103';
+    --spark-icon-airplane: '\f104';
+    --spark-icon-alert-circle: '\f105';
+    --spark-icon-alert-triangle: '\f106';
+    --spark-icon-align-center: '\f107';
+    --spark-icon-align-left: '\f108';
+    --spark-icon-align-right: '\f109';
+    --spark-icon-application-android: '\f10a';
+    --spark-icon-application-window: '\f10b';
+    --spark-icon-arrow-bidirectional-h: '\f10c';
+    --spark-icon-arrow-bidirectional-v: '\f10d';
+    --spark-icon-arrow-down: '\f10e';
+    --spark-icon-arrow-fork-h: '\f10f';
+    --spark-icon-arrow-large-down-left: '\f110';
+    --spark-icon-arrow-large-down-right: '\f111';
+    --spark-icon-arrow-large-down: '\f112';
+    --spark-icon-arrow-large-left: '\f113';
+    --spark-icon-arrow-large-right: '\f114';
+    --spark-icon-arrow-large-up-left: '\f115';
+    --spark-icon-arrow-large-up-right: '\f116';
+    --spark-icon-arrow-large-up: '\f117';
+    --spark-icon-arrow-left: '\f118';
+    --spark-icon-arrow-long-bidirectional-h: '\f119';
+    --spark-icon-arrow-long-bidirectional-v: '\f11a';
+    --spark-icon-arrow-long-down: '\f11b';
+    --spark-icon-arrow-long-left: '\f11c';
+    --spark-icon-arrow-long-opposite-h: '\f11d';
+    --spark-icon-arrow-long-opposite-v: '\f11e';
+    --spark-icon-arrow-long-right: '\f11f';
+    --spark-icon-arrow-long-up: '\f120';
+    --spark-icon-arrow-mass-left: '\f121';
+    --spark-icon-arrow-mass-right: '\f122';
+    --spark-icon-arrow-mass-slash-left: '\f123';
+    --spark-icon-arrow-mass-slash-right: '\f124';
+    --spark-icon-arrow-opposite-h: '\f125';
+    --spark-icon-arrow-opposite-v: '\f126';
+    --spark-icon-arrow-right: '\f127';
+    --spark-icon-arrow-small-bidirectional-h: '\f128';
+    --spark-icon-arrow-small-bidirectional-v: '\f129';
+    --spark-icon-arrow-small-down: '\f12a';
+    --spark-icon-arrow-small-left: '\f12b';
+    --spark-icon-arrow-small-opposite-h: '\f12c';
+    --spark-icon-arrow-small-opposite-v: '\f12d';
+    --spark-icon-arrow-small-right: '\f12e';
+    --spark-icon-arrow-small-up: '\f12f';
+    --spark-icon-arrow-up: '\f130';
+    --spark-icon-auto-format: '\f131';
+    --spark-icon-backward: '\f132';
+    --spark-icon-battery-charging: '\f133';
+    --spark-icon-battery-critical: '\f134';
+    --spark-icon-battery-empty: '\f135';
+    --spark-icon-battery-full: '\f136';
+    --spark-icon-battery-high: '\f137';
+    --spark-icon-battery-low: '\f138';
+    --spark-icon-battery-medium: '\f139';
+    --spark-icon-bell: '\f13a';
+    --spark-icon-blade-server: '\f13b';
+    --spark-icon-bloch-sphere: '\f13c';
+    --spark-icon-body: '\f13d';
+    --spark-icon-bookmark: '\f13e';
+    --spark-icon-bookshelf: '\f13f';
+    --spark-icon-brand-fga: '\f140';
+    --spark-icon-bulb: '\f141';
+    --spark-icon-calendar: '\f142';
+    --spark-icon-camera: '\f143';
+    --spark-icon-caret-down: '\f144';
+    --spark-icon-caret-left: '\f145';
+    --spark-icon-caret-right: '\f146';
+    --spark-icon-caret-up: '\f147';
+    --spark-icon-cellular-critical: '\f148';
+    --spark-icon-cellular-full: '\f149';
+    --spark-icon-cellular-high: '\f14a';
+    --spark-icon-cellular-low: '\f14b';
+    --spark-icon-cellular-medium: '\f14c';
+    --spark-icon-chain-connect: '\f14d';
+    --spark-icon-chain-disconnect: '\f14e';
+    --spark-icon-chart: '\f14f';
+    --spark-icon-check-circle: '\f150';
+    --spark-icon-check: '\f151';
+    --spark-icon-checkbox-empty: '\f152';
+    --spark-icon-checkbox-partially: '\f153';
+    --spark-icon-checkbox-selected: '\f154';
+    --spark-icon-chevron-double-down: '\f155';
+    --spark-icon-chevron-double-left: '\f156';
+    --spark-icon-chevron-double-right: '\f157';
+    --spark-icon-chevron-double-small-down: '\f158';
+    --spark-icon-chevron-double-small-left: '\f159';
+    --spark-icon-chevron-double-small-right: '\f15a';
+    --spark-icon-chevron-double-small-up: '\f15b';
+    --spark-icon-chevron-double-up: '\f15c';
+    --spark-icon-chevron-down: '\f15d';
+    --spark-icon-chevron-left: '\f15e';
+    --spark-icon-chevron-right: '\f15f';
+    --spark-icon-chevron-small-down: '\f160';
+    --spark-icon-chevron-small-left: '\f161';
+    --spark-icon-chevron-small-right: '\f162';
+    --spark-icon-chevron-small-up: '\f163';
+    --spark-icon-chevron-up: '\f164';
+    --spark-icon-chip-alt: '\f165';
+    --spark-icon-chip: '\f166';
+    --spark-icon-circle: '\f167';
+    --spark-icon-clamp: '\f168';
+    --spark-icon-clipboard-arrow-left: '\f169';
+    --spark-icon-clipboard-arrow-right: '\f16a';
+    --spark-icon-clipboard-backward: '\f16b';
+    --spark-icon-clipboard-forward: '\f16c';
+    --spark-icon-clipboard-list: '\f16d';
+    --spark-icon-clipboard-play: '\f16e';
+    --spark-icon-clipboard-text: '\f16f';
+    --spark-icon-clipboard: '\f170';
+    --spark-icon-cloud-download: '\f171';
+    --spark-icon-cloud-error: '\f172';
+    --spark-icon-cloud-off: '\f173';
+    --spark-icon-cloud-success: '\f174';
+    --spark-icon-cloud-upload: '\f175';
+    --spark-icon-cloud: '\f176';
+    --spark-icon-collapse-all: '\f177';
+    --spark-icon-columns: '\f178';
+    --spark-icon-command-line: '\f179';
+    --spark-icon-comment-dots: '\f17a';
+    --spark-icon-comment: '\f17b';
+    --spark-icon-comments: '\f17c';
+    --spark-icon-compass: '\f17d';
+    --spark-icon-copy: '\f17e';
+    --spark-icon-cpu-brain: '\f17f';
+    --spark-icon-cpu: '\f180';
+    --spark-icon-create-subresource: '\f181';
+    --spark-icon-cross-circle: '\f182';
+    --spark-icon-cross: '\f183';
+    --spark-icon-crossroads-sign: '\f184';
+    --spark-icon-cube-detached: '\f185';
+    --spark-icon-cube: '\f186';
+    --spark-icon-database: '\f187';
+    --spark-icon-deny: '\f188';
+    --spark-icon-dependency: '\f189';
+    --spark-icon-desk-phone: '\f18a';
+    --spark-icon-desktop-shortcuts: '\f18b';
+    --spark-icon-desktop: '\f18c';
+    --spark-icon-digits-circle: '\f18d';
+    --spark-icon-direction: '\f18e';
+    --spark-icon-dislike: '\f18f';
+    --spark-icon-document-arrow-right: '\f190';
+    --spark-icon-document-code: '\f191';
+    --spark-icon-document-diagram: '\f192';
+    --spark-icon-document-gear: '\f193';
+    --spark-icon-document-graph: '\f194';
+    --spark-icon-document-list: '\f195';
+    --spark-icon-document-plus: '\f196';
+    --spark-icon-document-text-slash: '\f197';
+    --spark-icon-document-text: '\f198';
+    --spark-icon-document: '\f199';
+    --spark-icon-download: '\f19a';
+    --spark-icon-drag: '\f19b';
+    --spark-icon-edit: '\f19c';
+    --spark-icon-ellipse-vertical: '\f19d';
+    --spark-icon-ellipse: '\f19e';
+    --spark-icon-ellipsis-h: '\f19f';
+    --spark-icon-ellipsis-v: '\f1a0';
+    --spark-icon-email: '\f1a1';
+    --spark-icon-energy: '\f1a2';
+    --spark-icon-expand-all: '\f1a3';
+    --spark-icon-external-link: '\f1a4';
+    --spark-icon-eye-slash: '\f1a5';
+    --spark-icon-eye: '\f1a6';
+    --spark-icon-filter-cancel: '\f1a7';
+    --spark-icon-filter: '\f1a8';
+    --spark-icon-fire: '\f1a9';
+    --spark-icon-fit-screen: '\f1aa';
+    --spark-icon-flag: '\f1ab';
+    --spark-icon-flame-chart: '\f1ac';
+    --spark-icon-folder-add: '\f1ad';
+    --spark-icon-folder-arrow-right: '\f1ae';
+    --spark-icon-folder-user: '\f1af';
+    --spark-icon-folder: '\f1b0';
+    --spark-icon-forward: '\f1b1';
+    --spark-icon-frame-copy: '\f1b2';
+    --spark-icon-frame: '\f1b3';
+    --spark-icon-full-zoom-in: '\f1b4';
+    --spark-icon-full-zoom-out: '\f1b5';
+    --spark-icon-function: '\f1b6';
+    --spark-icon-gauge: '\f1b7';
+    --spark-icon-gear: '\f1b8';
+    --spark-icon-gears: '\f1b9';
+    --spark-icon-globe-pointer: '\f1ba';
+    --spark-icon-globe: '\f1bb';
+    --spark-icon-gpu: '\f1bc';
+    --spark-icon-graph-chart: '\f1bd';
+    --spark-icon-graph: '\f1be';
+    --spark-icon-grid: '\f1bf';
+    --spark-icon-hand: '\f1c0';
+    --spark-icon-handset: '\f1c1';
+    --spark-icon-head-with-brain: '\f1c2';
+    --spark-icon-head-with-speech: '\f1c3';
+    --spark-icon-heart: '\f1c4';
+    --spark-icon-heat-map: '\f1c5';
+    --spark-icon-help-circle: '\f1c6';
+    --spark-icon-help-comment: '\f1c7';
+    --spark-icon-hexagon: '\f1c8';
+    --spark-icon-home: '\f1c9';
+    --spark-icon-hourglass: '\f1ca';
+    --spark-icon-human-alt: '\f1cb';
+    --spark-icon-human: '\f1cc';
+    --spark-icon-icicle-chart: '\f1cd';
+    --spark-icon-information-circle: '\f1ce';
+    --spark-icon-inherited: '\f1cf';
+    --spark-icon-key: '\f1d0';
+    --spark-icon-keyboard: '\f1d1';
+    --spark-icon-laptop-arrow-down: '\f1d2';
+    --spark-icon-laptop: '\f1d3';
+    --spark-icon-laptops: '\f1d4';
+    --spark-icon-layout-horizontal: '\f1d5';
+    --spark-icon-layout-vertical: '\f1d6';
+    --spark-icon-letters-circle: '\f1d7';
+    --spark-icon-like: '\f1d8';
+    --spark-icon-list: '\f1d9';
+    --spark-icon-lock: '\f1da';
+    --spark-icon-magnifier-area: '\f1db';
+    --spark-icon-magnifier-cancel: '\f1dc';
+    --spark-icon-magnifier-minus: '\f1dd';
+    --spark-icon-magnifier-plus: '\f1de';
+    --spark-icon-magnifier: '\f1df';
+    --spark-icon-match-whole-word: '\f1e0';
+    --spark-icon-maximize: '\f1e1';
+    --spark-icon-megaphone: '\f1e2';
+    --spark-icon-memory-card: '\f1e3';
+    --spark-icon-menu: '\f1e4';
+    --spark-icon-microphone: '\f1e5';
+    --spark-icon-millisecond: '\f1e6';
+    --spark-icon-minus-circle: '\f1e7';
+    --spark-icon-minus: '\f1e8';
+    --spark-icon-mirror: '\f1e9';
+    --spark-icon-mouse-left-click: '\f1ea';
+    --spark-icon-mouse-right-click: '\f1eb';
+    --spark-icon-mouse: '\f1ec';
+    --spark-icon-network: '\f1ed';
+    --spark-icon-object-selection: '\f1ee';
+    --spark-icon-octagon: '\f1ef';
+    --spark-icon-on-off: '\f1f0';
+    --spark-icon-parallelogram: '\f1f1';
+    --spark-icon-pause: '\f1f2';
+    --spark-icon-pencil: '\f1f3';
+    --spark-icon-pentagon: '\f1f4';
+    --spark-icon-picture: '\f1f5';
+    --spark-icon-pie-chart: '\f1f6';
+    --spark-icon-pill-vertical: '\f1f7';
+    --spark-icon-pill: '\f1f8';
+    --spark-icon-pin-h: '\f1f9';
+    --spark-icon-pin: '\f1fa';
+    --spark-icon-play-pause: '\f1fb';
+    --spark-icon-play: '\f1fc';
+    --spark-icon-plugins: '\f1fd';
+    --spark-icon-plus-circle: '\f1fe';
+    --spark-icon-plus: '\f1ff';
+    --spark-icon-point-pushpull: '\f200';
+    --spark-icon-point-selector: '\f201';
+    --spark-icon-pointer-area: '\f202';
+    --spark-icon-pointer: '\f203';
+    --spark-icon-printer: '\f204';
+    --spark-icon-pulse: '\f205';
+    --spark-icon-quartered-circle: '\f206';
+    --spark-icon-rack-mount: '\f207';
+    --spark-icon-radiobutton-empty: '\f208';
+    --spark-icon-radiobutton-selected: '\f209';
+    --spark-icon-random: '\f20a';
+    --spark-icon-rectangle-vertical: '\f20b';
+    --spark-icon-rectangle: '\f20c';
+    --spark-icon-recycle: '\f20d';
+    --spark-icon-redo-dotted: '\f20e';
+    --spark-icon-redo-half-dotted: '\f20f';
+    --spark-icon-redo-square: '\f210';
+    --spark-icon-redo: '\f211';
+    --spark-icon-refresh-gear: '\f212';
+    --spark-icon-refresh-play: '\f213';
+    --spark-icon-refresh: '\f214';
+    --spark-icon-register: '\f215';
+    --spark-icon-repeat: '\f216';
+    --spark-icon-replay: '\f217';
+    --spark-icon-rhombus: '\f218';
+    --spark-icon-robot: '\f219';
+    --spark-icon-rotary-phone: '\f21a';
+    --spark-icon-scissors: '\f21b';
+    --spark-icon-scope: '\f21c';
+    --spark-icon-shading-rate: '\f21d';
+    --spark-icon-shapes: '\f21e';
+    --spark-icon-share: '\f21f';
+    --spark-icon-shield-check: '\f220';
+    --spark-icon-shield-disabled: '\f221';
+    --spark-icon-shield: '\f222';
+    --spark-icon-show-all: '\f223';
+    --spark-icon-sigma: '\f224';
+    --spark-icon-sign-in: '\f225';
+    --spark-icon-sign-out: '\f226';
+    --spark-icon-signal-alt: '\f227';
+    --spark-icon-signal: '\f228';
+    --spark-icon-simple-ps: '\f229';
+    --spark-icon-skip-backward: '\f22a';
+    --spark-icon-skip-forward: '\f22b';
+    --spark-icon-sliders: '\f22c';
+    --spark-icon-sort-order: '\f22d';
+    --spark-icon-sound-off: '\f22e';
+    --spark-icon-sound-on: '\f22f';
+    --spark-icon-sound: '\f230';
+    --spark-icon-source-type-metric: '\f231';
+    --spark-icon-square-handles-rotate: '\f232';
+    --spark-icon-square-handles: '\f233';
+    --spark-icon-square: '\f234';
+    --spark-icon-squares-handles: '\f235';
+    --spark-icon-stack: '\f236';
+    --spark-icon-star: '\f237';
+    --spark-icon-stop: '\f238';
+    --spark-icon-stream: '\f239';
+    --spark-icon-sun-half: '\f23a';
+    --spark-icon-sun: '\f23b';
+    --spark-icon-table: '\f23c';
+    --spark-icon-tag-add: '\f23d';
+    --spark-icon-tag-alt-1: '\f23e';
+    --spark-icon-tag-alt-2: '\f23f';
+    --spark-icon-tag-alt-3: '\f240';
+    --spark-icon-tag-group-add: '\f241';
+    --spark-icon-tag-group: '\f242';
+    --spark-icon-tag: '\f243';
+    --spark-icon-target-check: '\f244';
+    --spark-icon-target: '\f245';
+    --spark-icon-task-dependency: '\f246';
+    --spark-icon-task-range: '\f247';
+    --spark-icon-team: '\f248';
+    --spark-icon-thumbnails-view: '\f249';
+    --spark-icon-time-check: '\f24a';
+    --spark-icon-time: '\f24b';
+    --spark-icon-timeout-warning: '\f24c';
+    --spark-icon-trace-app: '\f24d';
+    --spark-icon-trapezoid: '\f24e';
+    --spark-icon-trash: '\f24f';
+    --spark-icon-triangle: '\f250';
+    --spark-icon-undo-dotted: '\f251';
+    --spark-icon-undo-half-dotted: '\f252';
+    --spark-icon-undo-square: '\f253';
+    --spark-icon-undo: '\f254';
+    --spark-icon-unlock: '\f255';
+    --spark-icon-update-failure: '\f256';
+    --spark-icon-update-success: '\f257';
+    --spark-icon-upload: '\f258';
+    --spark-icon-user-circle: '\f259';
+    --spark-icon-user-globe: '\f25a';
+    --spark-icon-user: '\f25b';
+    --spark-icon-users: '\f25c';
+    --spark-icon-watershed: '\f25d';
+    --spark-icon-window-charging: '\f25e';
+    --spark-icon-wrench: '\f25f';
+    --spark-icon-zoom-out-selection: '\f260';
+    --spark-icon-zoom-to-selection: '\f261';
+    --spark-icon-alert: '\f262';
+    --spark-icon-clip: '\f263';
+    --spark-icon-contract: '\f264';
+    --spark-icon-cube-detached-left: '\f265';
+    --spark-icon-cube-detached-right: '\f266';
+    --spark-icon-cube-detached-top: '\f267';
+    --spark-icon-ear: '\f268';
+    --spark-icon-expand: '\f269';
+    --spark-icon-hash: '\f26a';
+    --spark-icon-help: '\f26b';
+    --spark-icon-information: '\f26c';
+    --spark-icon-lasso: '\f26d';
+    --spark-icon-line-mapping: '\f26e';
+    --spark-icon-line: '\f26f';
+    --spark-icon-magic-wand: '\f270';
+    --spark-icon-shapes-exclude: '\f271';
+    --spark-icon-shapes-intersect: '\f272';
+    --spark-icon-shapes-subtract: '\f273';
+    --spark-icon-shapes-union: '\f274';
+    --spark-icon-source-line-mapping: '\f275';
+    --spark-icon-spinner-bg: '\f276';
+    --spark-icon-spinner-quarter-half: '\f277';
+    --spark-icon-spinner-quarter: '\f278';
+    --spark-icon-spinner-three-quarters-half: '\f279';
+    --spark-icon-spinner-three-quarters: '\f27a';
+    --spark-icon-tag-revisit-alt-1: '\f27b';
+    --spark-icon-tag-revisit: '\f27c';
+    --spark-icon-three-dots-circle: '\f27d';
+    --spark-icon-time-refresh: '\f27e';
+    --spark-icon-build-cube: '\f27f';
+    --spark-icon-cloud-loader: '\f280';
+    --spark-icon-circle-half-fill: '\f281';
+    --spark-icon-application-window-alt: '\f282';
+    --spark-icon-host-error: '\f283';
+    --spark-icon-host-fail: '\f284';
+    --spark-icon-host-info: '\f285';
+    --spark-icon-host-settings-alt: '\f286';
+    --spark-icon-host-settings: '\f287';
+    --spark-icon-host-success: '\f288';
+    --spark-icon-host: '\f289';
+    --spark-icon-location: '\f28a';
+
+    /* Font size across all icons */
+    --pst-font-size-icon: 1.5rem;
+
+    /* Override fontawesome icons with spark icons */
+    --pst-icon-check-circle: var(--spark-icon-check-circle);
+    --pst-icon-info-circle: var(--spark-icon-information-circle);
+    --pst-icon-exclamation-triangle: var(--spark-icon-alert-triangle);
+    --pst-icon-exclamation-circle: var(--spark-icon-alert-circle);
+    --pst-icon-times-circle: var(--spark-icon-cross-circle);
+    --pst-icon-lightbulb: var(--spark-icon-bulb);
+    --pst-icon-download: var(--spark-icon-download);
+    --pst-icon-angle-left: var(--spark-icon-chevron-left);
+    --pst-icon-angle-right: var(--spark-icon-chevron-right);
+    --pst-icon-external-link: var(--spark-icon-external-link);
+    --pst-icon-search-minus: var(--spark-icon-magnifier-minus);
+    --pst-icon-github: '\f09b';
+    --pst-icon-gitlab: '\f296';
+    --pst-icon-share: var(--spark-icon-share);
+    --pst-icon-bell: var(--spark-icon-bell);
+    --pst-icon-pencil: var(--spark-icon-edit);
+
+    /* Bootstrap icons */
+    --pst-breadcrumb-divider: var(--spark-icon-document-text-slash);
+
+    /*****************************************************************************
+  * Admonitions
+  **/
+
+    --pst-icon-admonition-default: var(--pst-icon-bell);
+    --pst-icon-admonition-note: var(--pst-icon-info-circle);
+    --pst-icon-admonition-attention: var(--pst-icon-exclamation-circle);
+    --pst-icon-admonition-caution: var(--pst-icon-exclamation-triangle);
+    --pst-icon-admonition-warning: var(--pst-icon-exclamation-triangle);
+    --pst-icon-admonition-danger: var(--pst-icon-exclamation-triangle);
+    --pst-icon-admonition-error: var(--pst-icon-times-circle);
+    --pst-icon-admonition-hint: var(--pst-icon-lightbulb);
+    --pst-icon-admonition-tip: var(--pst-icon-lightbulb);
+    --pst-icon-admonition-important: var(--pst-icon-exclamation-circle);
+    --pst-icon-admonition-seealso: var(--pst-icon-share);
+    --pst-icon-admonition-todo: var(--pst-icon-pencil);
+
+    /*****************************************************************************
+  * versionmodified
+  **/
+
+    --pst-icon-versionmodified-default: var(--pst-icon-exclamation-circle);
+    --pst-icon-versionmodified-added: var(--pst-icon-exclamation-circle);
+    --pst-icon-versionmodified-changed: var(--pst-icon-exclamation-circle);
+    --pst-icon-versionmodified-deprecated: var(--pst-icon-exclamation-circle);
+
+    /** Override fontawsome classes **/
+    --fa-font-solid: normal 600 1em/1 spark-icon;
+    --fa-font-regular: normal 400 1em/1 spark-icon;
+    --fa-font-light: normal 300 1em/1 spark-icon;
+}
diff --git a/intel_sphinx_theme/static/css/global/index.css b/intel_sphinx_theme/static/css/global/index.css
new file mode 100644
index 0000000..81bdd22
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/index.css
@@ -0,0 +1,4 @@
+@import './base.css';
+@import './spark-colors.css';
+@import './global.css';
+@import './spark-icons.css';
diff --git a/intel_sphinx_theme/static/css/global/spark-colors.css b/intel_sphinx_theme/static/css/global/spark-colors.css
new file mode 100644
index 0000000..8f35ad4
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/spark-colors.css
@@ -0,0 +1,224 @@
+:root {
+    --spark-color-transparent: transparent;
+    --spark-color-theme-light-gray50: #ffffff;
+    --spark-color-theme-light-gray75: #f9f9f9;
+    --spark-color-theme-light-gray100: #f4f5f5;
+    --spark-color-theme-light-gray200: #e9eaeb;
+    --spark-color-theme-light-gray300: #e2e2e4;
+    --spark-color-theme-light-gray400: #c9cace;
+    --spark-color-theme-light-gray500: #b2b3b9;
+    --spark-color-theme-light-gray600: #8b8e97;
+    --spark-color-theme-light-gray700: #6a6d75;
+    --spark-color-theme-light-gray800: #494b51;
+    --spark-color-theme-light-gray900: #2b2c30;
+    --spark-color-theme-dark-gray50: #242528;
+    --spark-color-theme-dark-gray75: #2e2f32;
+    --spark-color-theme-dark-gray100: #313236;
+    --spark-color-theme-dark-gray200: #3c3e42;
+    --spark-color-theme-dark-gray300: #484a50;
+    --spark-color-theme-dark-gray400: #585a62;
+    --spark-color-theme-dark-gray500: #6b6e76;
+    --spark-color-theme-dark-gray600: #8e9099;
+    --spark-color-theme-dark-gray700: #b7b9be;
+    --spark-color-theme-dark-gray800: #e3e3e5;
+    --spark-color-theme-dark-gray900: #ffffff;
+    --spark-color-classic-blue-tint2: #6cc4f5;
+    --spark-color-classic-blue-tint1: #0099ec;
+    --spark-color-classic-blue: #0054ae;
+    --spark-color-classic-blue-shade1: #00377c;
+    --spark-color-classic-blue-shade2: #001e50;
+    --spark-color-energy-blue-tint2: #a0ebff;
+    --spark-color-energy-blue-tint1: #6ddcff;
+    --spark-color-energy-blue: #00c7fd;
+    --spark-color-energy-blue-shade1: #0095ca;
+    --spark-color-energy-blue-shade2: #005b85;
+    --spark-color-carbon-tint2: #e9e9e9;
+    --spark-color-carbon-tint1: #aeaeae;
+    --spark-color-carbon: #808080;
+    --spark-color-carbon-shade1: #525252;
+    --spark-color-carbon-shade2: #262626;
+    --spark-color-blue-steel-tint2: #b9d6e5;
+    --spark-color-blue-steel-tint1: #86b3ca;
+    --spark-color-blue-steel: #548fad;
+    --spark-color-blue-steel-shade1: #41728a;
+    --spark-color-blue-steel-shade2: #183544;
+    --spark-color-geode-tint2: #eec3f7;
+    --spark-color-geode-tint1: #cc94da;
+    --spark-color-geode: #8f5da2;
+    --spark-color-geode-shade1: #653171;
+    --spark-color-moss-tint2: #d7f3a2;
+    --spark-color-moss-tint1: #b1d272;
+    --spark-color-moss: #8bae46;
+    --spark-color-moss-shade1: #708541;
+    --spark-color-moss-shade2: #515a3d;
+    --spark-color-rust-tint2: #ffc599;
+    --spark-color-rust-tint1: #ff8f51;
+    --spark-color-rust: #e96115;
+    --spark-color-rust-shade1: #b24501;
+    --spark-color-cobalt-tint2: #98a1ff;
+    --spark-color-cobalt-tint1: #5b69ff;
+    --spark-color-cobalt: #1e2eb8;
+    --spark-color-cobalt-shade1: #000f8a;
+    --spark-color-cobalt-shade2: #000864;
+    --spark-color-cobalt-shade3: #040e35;
+    --spark-color-coral-tint2: #ffb6b9;
+    --spark-color-coral-tint1: #ff848a;
+    --spark-color-coral: #ff5662;
+    --spark-color-coral-shade1: #c81326;
+    --spark-color-daisy-tint1: #ffe17a;
+    --spark-color-daisy: #fec91b;
+    --spark-color-daisy-shade1: #edb200;
+    --spark-color-daisy-shade2: #c98f00;
+    --spark-color-white: #ffffff;
+    --spark-color-black: #000000;
+    --spark-color-digital-classic-blue: #0046cb;
+    --spark-color-electric-moss: #9fd541;
+    --spark-color-electric-daisy: #ffe500;
+    --spark-color-electric-rust: #fe8022;
+    --spark-color-electric-coral: #fe5a80;
+    --spark-color-electric-geode: #a923f1;
+    --spark-color-electric-cobalt: #1e1eff;
+    --spark-color-electric-aqua: #16cfb1;
+    --spark-color-electric-cosmos: #7000ff;
+    --spark-color-classic-blue-shade1-5: #002567;
+    --spark-color-classic-blue-shade3: #030f26;
+    --spark-color-energy-blue-shade3: #005b85;
+    --spark-color-cobalt-shade4: #040b24;
+    --spark-color-cobalt-shade5: #020316;
+    --spark-color-aqua-tint2: #a2f6e8;
+    --spark-color-aqua-tint1: #5be3cd;
+    --spark-color-aqua: #16cfb1;
+    --spark-color-aqua-shade1: #0f9b8f;
+    --spark-color-aqua-shade1-5: #09857c;
+    --spark-color-aqua-shade2: #08746e;
+    --spark-color-aqua-shade3: #065955;
+    --spark-color-aqua-shade4: #044845;
+    --spark-color-cosmos-tint2: #af98ff;
+    --spark-color-cosmos-tint1: #8b50ff;
+    --spark-color-cosmos: var(--spark-color-electric-cosmos);
+    --spark-color-cosmos-shade1: #5400c0;
+    --spark-color-cosmos-shade2: #38007f;
+    --spark-color-tb-theme-light-gray50: #ffffff;
+    --spark-color-tb-theme-light-gray75: #f7f7f8;
+    --spark-color-tb-theme-light-gray100: #f1f1f3;
+    --spark-color-tb-theme-light-gray200: #e7e7eb;
+    --spark-color-tb-theme-light-gray300: #dcdce3;
+    --spark-color-tb-theme-light-gray400: #bec0cb;
+    --spark-color-tb-theme-light-gray500: #acaebc;
+    --spark-color-tb-theme-light-gray600: #82879b;
+    --spark-color-tb-theme-light-gray700: #676d84;
+    --spark-color-tb-theme-light-gray800: #383e56;
+    --spark-color-tb-theme-light-gray900: #1c223b;
+    --spark-color-tb-theme-dark-gray50: #020316;
+    --spark-color-tb-theme-dark-gray75: #070c21;
+    --spark-color-tb-theme-dark-gray100: #0d132b;
+    --spark-color-tb-theme-dark-gray200: #1c223b;
+    --spark-color-tb-theme-dark-gray300: #383e56;
+    --spark-color-tb-theme-dark-gray400: #555b72;
+    --spark-color-tb-theme-dark-gray500: #676d84;
+    --spark-color-tb-theme-dark-gray600: #82879b;
+    --spark-color-tb-theme-dark-gray700: #acaebc;
+    --spark-color-tb-theme-dark-gray800: #e7e7eb;
+    --spark-color-tb-theme-dark-gray900: #ffffff;
+    --spark-color-bright-gradient-aqua-cobalt: linear-gradient(
+        var(--spark-color-gradient-degree, 45deg),
+        #16cfb1,
+        #040e35
+    );
+    --spark-color-bright-gradient-aqua-cosmos: linear-gradient(
+        var(--spark-color-gradient-degree, 45deg),
+        #16cfb1,
+        #057aff,
+        #5400c0
+    );
+    --spark-color-deep-ambient-gradient-cosmos-classic-blue-shade1-5: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #002567,
+        #7000ff
+    );
+    --spark-color-deep-ambient-gradient-cosmos-cobalt-shade3: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #040e35,
+        #7000ff
+    );
+    --spark-color-deep-ambient-gradient-cosmos-shade2-cobalt-shade3: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #040e35,
+        #38007f
+    );
+    --spark-color-aqua-gradient-aqua-tint2-white: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #a2f6e8,
+        #c6faf1,
+        #ffffff
+    );
+    --spark-color-aqua-gradient-aqua-white: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #16cfb1,
+        #b7f0e7,
+        #ffffff
+    );
+    --spark-color-aqua-gradient-aqua-blue: linear-gradient(
+        var(--spark-color-gradient-degree, 45deg),
+        #020e37,
+        #0054ae,
+        #00d2af
+    );
+    --spark-color-cosmos-gradient-cosmos-tint1-white: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #8b50ff,
+        #cbb0ff,
+        #ffffff
+    );
+    --spark-color-cosmos-gradient-cosmos-tint1-aqua: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #8b50ff,
+        #057aff,
+        #16cfb1
+    );
+    --spark-color-cosmos-gradient-cosmos-white: linear-gradient(
+        var(--spark-color-gradient-degree, 180deg),
+        #7000ff,
+        #9848ff,
+        #d1adff,
+        #ffffff
+    );
+    --spark-color-cosmos-gradient-cosmos-shade2: linear-gradient(
+        var(--spark-color-gradient-degree, 45deg),
+        #3e0083,
+        #020e37
+    );
+
+    --spark-color-white: #ffffff;
+    --spark-color-black: #000000;
+
+    --spark-color-error-natural: #f5c7c7;
+    --spark-color-error-natural-inverse: #b13d4a;
+    --spark-color-error-soft: #f88f8f;
+    --spark-color-error-soft-inverse: #d55050;
+    --spark-color-error: #ce0000;
+    --spark-color-error-background: hsl(from var(--spark-color-error) h s 95%);
+    --spark-color-error-background-inverse: hsl(
+        from var(--spark-color-error-natural-inverse) h s 25%
+    );
+
+    --spark-color-warning-natural: #fff6cc;
+    --spark-color-warning-natural-inverse: #ffeb92;
+    --spark-color-warning-soft: #ffeb92;
+    --spark-color-warning-soft-inverse: #ffe057;
+    --spark-color-warning: #ffd100;
+    --spark-color-warning-background-inverse: hsl(
+        from var(--spark-color-warning-soft-inverse) h s 15%
+    );
+    --spark-color-warning-background: hsl(from var(--spark-color-warning) h s 90%);
+
+    --spark-color-success-natural: #c2e5c2;
+    --spark-color-success-natural-inverse: #006400;
+    --spark-color-success-soft: #add2ad;
+    --spark-color-success-soft-inverse: #5ca05c;
+    --spark-color-success: #008a00;
+    --spark-color-success-background: hsl(from var(--spark-color-success-natural) h s 90%);
+    --spark-color-success-background-inverse: hsl(
+        from var(--spark-color-success-natural-inverse) h s 10%
+    );
+}
diff --git a/intel_sphinx_theme/static/css/global/spark-icons.css b/intel_sphinx_theme/static/css/global/spark-icons.css
new file mode 100644
index 0000000..45b7322
--- /dev/null
+++ b/intel_sphinx_theme/static/css/global/spark-icons.css
@@ -0,0 +1,67 @@
+/* Home icon */
+ul.bd-breadcrumbs li.breadcrumb-item a svg {
+    display: none;
+}
+
+.breadcrumb-home a::before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    content: '\f1c9';
+    display: inline-block;
+}
+
+/* Breadcrumb chevron */
+ul.bd-breadcrumbs li.breadcrumb-item:not(.breadcrumb-home):before {
+    font-family: 'spark-icon';
+    font-size: 24px;
+    font-weight: 400;
+    content: '\f162';
+}
+
+/* Navbar */
+/* Search */
+.search-button-field svg {
+    display: none;
+}
+
+.search-button-field:before {
+    font-family: 'spark-icon';
+    font-size: 20px;
+    font-weight: 400;
+    content: '\f1df';
+}
+
+/* Right sidebar */
+
+svg:not(:host).svg-inline--fa,
+svg:not(:root).svg-inline--fa {
+    display: none;
+}
+
+div.tocsection.sourcelink a:before {
+    font-family: 'spark-icon';
+    font-size: 16px;
+    content: '\f198';
+}
+
+.onthispage svg {
+    display: none;
+}
+
+.onthispage:before {
+    font-family: 'spark-icon';
+    font-size: 14px;
+    content: '\f1d9';
+}
+
+/* Copybutton */
+
+button.copybtn svg {
+    display: none;
+}
+
+div.highlight button.copybtn:not(.success):before {
+    font-family: 'spark-icon';
+    font-size: 14px;
+    content: '\f17e';
+}
diff --git a/intel_sphinx_theme/static/css/spark_sphinx_theme.css b/intel_sphinx_theme/static/css/spark_sphinx_theme.css
new file mode 100644
index 0000000..0c63196
--- /dev/null
+++ b/intel_sphinx_theme/static/css/spark_sphinx_theme.css
@@ -0,0 +1,3 @@
+@import './components/index.css';
+@import './global/index.css';
+@import './global/icons.css';
diff --git a/intel_sphinx_theme/static/css/spark_sphinx_theme_tb.css b/intel_sphinx_theme/static/css/spark_sphinx_theme_tb.css
new file mode 100644
index 0000000..ba389ba
--- /dev/null
+++ b/intel_sphinx_theme/static/css/spark_sphinx_theme_tb.css
@@ -0,0 +1,3 @@
+@import './components/index-tb.css';
+@import './global-tb/index.css';
+@import './global/icons.css';
diff --git a/intel_sphinx_theme/static/favicon.ico b/intel_sphinx_theme/static/favicon.ico
new file mode 100644
index 0000000..e69de29
diff --git a/intel_sphinx_theme/static/favicon.svg b/intel_sphinx_theme/static/favicon.svg
new file mode 100644
index 0000000..2b8fa7d
--- /dev/null
+++ b/intel_sphinx_theme/static/favicon.svg
@@ -0,0 +1,25 @@
+
+
+  
+    
+  
+  
+  
+
\ No newline at end of file
diff --git a/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-bold.woff2 b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-bold.woff2
new file mode 100644
index 0000000..ec2adad
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-bold.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-light.woff2 b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-light.woff2
new file mode 100644
index 0000000..5900ced
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-light.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-medium.woff2 b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-medium.woff2
new file mode 100644
index 0000000..3dc20cc
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-medium.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-regular.woff2 b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-regular.woff2
new file mode 100644
index 0000000..a669c6e
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneDisplay/intelone-display-regular.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Bold.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Bold.woff2
new file mode 100644
index 0000000..ef8cd88
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Bold.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-BoldItalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-BoldItalic.woff2
new file mode 100644
index 0000000..7b90706
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-BoldItalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Italic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Italic.woff2
new file mode 100644
index 0000000..949523c
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Italic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Light.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Light.woff2
new file mode 100644
index 0000000..3ef965d
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Light.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-LightItalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-LightItalic.woff2
new file mode 100644
index 0000000..a417032
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-LightItalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Medium.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Medium.woff2
new file mode 100644
index 0000000..540798c
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Medium.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-MediumItalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-MediumItalic.woff2
new file mode 100644
index 0000000..74071c8
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-MediumItalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Regular.woff2 b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Regular.woff2
new file mode 100644
index 0000000..8b7531e
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneMono/IntelOneMono-Regular.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneMono/OFL.txt b/intel_sphinx_theme/static/fonts/IntelOneMono/OFL.txt
new file mode 100644
index 0000000..f4c8779
--- /dev/null
+++ b/intel_sphinx_theme/static/fonts/IntelOneMono/OFL.txt
@@ -0,0 +1,93 @@
+Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel'
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+https://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded, 
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bold.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bold.woff2
new file mode 100644
index 0000000..c127e66
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bold.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bolditalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bolditalic.woff2
new file mode 100644
index 0000000..1539919
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-bolditalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-italic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-italic.woff2
new file mode 100644
index 0000000..09bf8fa
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-italic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-light.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-light.woff2
new file mode 100644
index 0000000..9061686
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-light.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-lightitalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-lightitalic.woff2
new file mode 100644
index 0000000..c6b5071
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-lightitalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-medium.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-medium.woff2
new file mode 100644
index 0000000..03bd1ad
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-medium.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-mediumitalic.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-mediumitalic.woff2
new file mode 100644
index 0000000..136d523
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-mediumitalic.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-regular.woff2 b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-regular.woff2
new file mode 100644
index 0000000..5d38aa7
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/IntelOneText/intelone-text-regular.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/spark-icon-light.woff2 b/intel_sphinx_theme/static/fonts/spark-icon-light.woff2
new file mode 100644
index 0000000..03de8ae
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/spark-icon-light.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/spark-icon-regular.woff2 b/intel_sphinx_theme/static/fonts/spark-icon-regular.woff2
new file mode 100644
index 0000000..bcd05af
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/spark-icon-regular.woff2 differ
diff --git a/intel_sphinx_theme/static/fonts/spark-icon-solid.woff2 b/intel_sphinx_theme/static/fonts/spark-icon-solid.woff2
new file mode 100644
index 0000000..aa1d2d3
Binary files /dev/null and b/intel_sphinx_theme/static/fonts/spark-icon-solid.woff2 differ
diff --git a/intel_sphinx_theme/static/scripts/spark_sphinx_theme.js b/intel_sphinx_theme/static/scripts/spark_sphinx_theme.js
new file mode 100644
index 0000000..8ab461d
--- /dev/null
+++ b/intel_sphinx_theme/static/scripts/spark_sphinx_theme.js
@@ -0,0 +1,128 @@
+"use strict";
+
+function documentReady(callback) {
+  if (document.readyState != "loading") callback();
+  else document.addEventListener("DOMContentLoaded", callback());
+}
+
+/**
+ * Set the header variant.
+ * It can be one of ["spark-color", "spark-squares", "default"]
+ *
+ * @param {str} variant
+ */
+
+function setHeaderVariant(variant) {
+    if (variant !== "spark-color" && variant !== "spark-squares" && variant !== "default") {
+      console.error(`Got invalid header variant: ${variant}. Resetting to default.`);
+      localStorage.setItem("header", "default");
+    } else {
+      localStorage.setItem("header", variant);
+    }
+}
+
+function addVariantListener() {
+  setHeaderVariant(document.documentElement.dataset.header);
+}
+
+/**
+ * Set the footer variant.
+ * It can be one of ["simple", "line", "default"]
+ *
+ * @param {str} variant
+ */
+
+function setFooterVariant(variant) {
+    if (variant !== "simple" && variant !== "line" && variant !== "default") {
+      console.error(`Got invalid footer variant: ${variant}. Resetting to default.`);
+      localStorage.setItem("footer", "default");
+    } else {
+      localStorage.setItem("footer", variant);
+    }
+}
+
+function addFooterListener() {
+  setFooterVariant(document.documentElement.dataset.footer);
+}
+
+/**
+ * Set the content width variant.
+ * It can be one of ["small", "medium", "large"]
+ *
+ * @param {str} widthVariant
+ */
+
+function setContentWidthVariant(widthVariant) {
+  if (widthVariant !== "small" && widthVariant !== "medium" && widthVariant !== "large") {
+    console.error(`Got invalid content width variant: ${widthVariant}. Resetting to default.`);
+    localStorage.setItem("contentWidth", "medium");
+  } else {
+    localStorage.setItem("contentWidth", widthVariant);
+  }
+}
+
+function addContentWidthVariantListener() {
+  setContentWidthVariant(document.documentElement.dataset.contentWidth);
+}
+
+documentReady(addVariantListener);
+documentReady(addFooterListener);
+documentReady(addContentWidthVariantListener);
+
+var prevScrollPos = window.scrollY;
+window.onscroll = function() {
+  var currentScrollPos = window.scrollY;
+  if (currentScrollPos != 0) {
+    // Scrolling down
+    document.getElementById("spark-header-s2").classList.add("hidden");
+    document.getElementById("spark-header-s3").classList.add("hidden");
+  } else {
+    // Scrolling up
+    document.getElementById("spark-header-s2").classList.remove("hidden");
+    document.getElementById("spark-header-s3").classList.remove("hidden");
+  }
+  prevScrollPos = currentScrollPos;
+};
+
+// Code block line wrap
+document.addEventListener('DOMContentLoaded', () => {
+  const codeBlocks = document.querySelectorAll('div.highlight pre, div.highlight code');
+
+  const wrapIcon = `
+      
+  `;
+
+  const addWrapButton = (parent) => {
+    const button = document.createElement('button');
+    button.innerHTML = wrapIcon;
+    button.className = 'linewrap-button';
+    button.title = 'Toggle line wrap';
+    button.onclick = () => {
+      parent.classList.toggle('wrapped');
+      parent.querySelectorAll('pre, code').forEach(block => {
+        block.style.whiteSpace = parent.classList.contains('wrapped') ? 'pre-wrap' : 'pre';
+      });
+      parent.classList.add('scrollable');
+    };
+    parent.style.position = 'relative';
+    parent.appendChild(button);
+  };
+
+  const checkAndAddButton = (parent) => {
+    const pre = parent.querySelector('pre');
+    if (pre && (pre.scrollWidth > pre.clientWidth || parent.classList.contains('wrapped'))) {
+      if (!parent.querySelector('.linewrap-button')) {
+        addWrapButton(parent);
+      }
+      parent.classList.add('scrollable');
+    } else if (!parent.classList.contains('wrapped')) {
+      parent.classList.remove('scrollable');
+    }
+  };
+
+  codeBlocks.forEach((block) => {
+    const parent = block.parentElement;
+    checkAndAddButton(parent);
+    new ResizeObserver(() => checkAndAddButton(parent)).observe(parent);
+  });
+});
diff --git a/intel_sphinx_theme/templates/__init__.py b/intel_sphinx_theme/templates/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/intel_sphinx_theme/templates/layout.html b/intel_sphinx_theme/templates/layout.html
new file mode 100644
index 0000000..71f91c2
--- /dev/null
+++ b/intel_sphinx_theme/templates/layout.html
@@ -0,0 +1,55 @@
+{% extends "pydata_sphinx_theme/layout.html" %}
+
+{% block css %}
+  {{ super() }}
+  
+  
+  {%- if color_scheme == 'tb' -%}
+    
+  {% else %}
+    
+  {%- endif %}
+{% endblock css %}
+
+{% block extrahead %}
+  {{ super() }}
+  {%- if theme_default_favicon %}
+    
+    
+    
+    
+  {% endif %}
+{% endblock extrahead %}
+
+{% block docs_navbar %}
+  
+{% endblock docs_navbar %}
+
+{% block footer %}
+  {%- if footer_variant != 'simple' and footer_variant != 'line' -%}
+    
+ {%- include "sections/footer.html" %} +
+ {%- endif %} + {%- if footer_variant == 'simple' -%} +
+ {%- include "sections/footer/footer-simple.html" %} +
+ {%- endif %} + {%- if footer_variant == 'line' -%} +
+ {%- include "sections/footer/footer-line.html" %} +
+ {%- endif %} +{% endblock footer %} diff --git a/intel_sphinx_theme/templates/sections/footer/footer-line.html b/intel_sphinx_theme/templates/sections/footer/footer-line.html new file mode 100644 index 0000000..56f155d --- /dev/null +++ b/intel_sphinx_theme/templates/sections/footer/footer-line.html @@ -0,0 +1,14 @@ + diff --git a/intel_sphinx_theme/templates/sections/footer/footer-simple.html b/intel_sphinx_theme/templates/sections/footer/footer-simple.html new file mode 100644 index 0000000..15d3286 --- /dev/null +++ b/intel_sphinx_theme/templates/sections/footer/footer-simple.html @@ -0,0 +1,14 @@ + diff --git a/intel_sphinx_theme/templates/sections/header-line.html b/intel_sphinx_theme/templates/sections/header-line.html new file mode 100644 index 0000000..377d56d --- /dev/null +++ b/intel_sphinx_theme/templates/sections/header-line.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/intel_sphinx_theme/templates/sections/header-squares.html b/intel_sphinx_theme/templates/sections/header-squares.html new file mode 100644 index 0000000..2edb1b2 --- /dev/null +++ b/intel_sphinx_theme/templates/sections/header-squares.html @@ -0,0 +1,5 @@ +
+
+
+
+
\ No newline at end of file diff --git a/intel_sphinx_theme/templates/sections/header.html b/intel_sphinx_theme/templates/sections/header.html new file mode 100644 index 0000000..ed15995 --- /dev/null +++ b/intel_sphinx_theme/templates/sections/header.html @@ -0,0 +1,43 @@ +
+ {%- if header_variant=='spark-squares' -%} + {%- include "sections/header-squares.html" %} + {%- endif %} + + + {% set navbar_classes = navbar_align_class() %} + + {# A search button to show up only on mobile #} + {% for navbar_item in theme_navbar_persistent %} + + {% endfor %} + + {% if not remove_sidebar_secondary %} + + {% endif %} +
diff --git a/intel_sphinx_theme/templates/sections/sidebar-secondary.html b/intel_sphinx_theme/templates/sections/sidebar-secondary.html new file mode 100644 index 0000000..1c90574 --- /dev/null +++ b/intel_sphinx_theme/templates/sections/sidebar-secondary.html @@ -0,0 +1,36 @@ +{% if secondary_sidebar_items -%} + +{%- endif %} + +{% if global_link_list and global_link_list.links %} + + {% endif %} diff --git a/intel_sphinx_theme/templates/sidebar-nav-bs.html b/intel_sphinx_theme/templates/sidebar-nav-bs.html new file mode 100644 index 0000000..8a477f5 --- /dev/null +++ b/intel_sphinx_theme/templates/sidebar-nav-bs.html @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/intel_sphinx_theme/theme.conf b/intel_sphinx_theme/theme.conf new file mode 100644 index 0000000..5375547 --- /dev/null +++ b/intel_sphinx_theme/theme.conf @@ -0,0 +1,8 @@ +[theme] +inherit = pydata_sphinx_theme +name = intel_sphinx_theme + + +[options] +footer_links = +global_link_list = diff --git a/intel_sphinx_theme/theme.toml b/intel_sphinx_theme/theme.toml new file mode 100644 index 0000000..a4b0cbe --- /dev/null +++ b/intel_sphinx_theme/theme.toml @@ -0,0 +1,6 @@ +name = "intel_sphinx_theme" +theme_path = "intel_sphinx_theme" + +[theme] +inherit = "pydata_sphinx_theme" +# Add necessary theme configurations here \ No newline at end of file diff --git a/intel_sphinx_theme/themed_image.py b/intel_sphinx_theme/themed_image.py new file mode 100644 index 0000000..bbc83db --- /dev/null +++ b/intel_sphinx_theme/themed_image.py @@ -0,0 +1,47 @@ +from docutils.parsers.rst import Directive, directives +from docutils import nodes +from sphinx.util.nodes import set_source_info +import os + +class ThemedImage(Directive): + required_arguments = 1 + optional_arguments = 0 + final_argument_whitespace = True + option_spec = { + 'alt': directives.unchanged, + 'height': directives.length_or_unitless, + 'width': directives.length_or_percentage_or_unitless, + 'scale': directives.percentage, + 'target': directives.unchanged_required, + 'class': directives.class_option, + } + + def run(self): + img_path = self.arguments[0] + base_path, ext = os.path.splitext(img_path) + + # Replace the 'light' segment with 'dark' for the dark theme image path + dark_img_path = base_path.replace('/light/', '/dark/') + ext + light_img_path = img_path # The original path is for the light theme + + # Create image nodes for light and dark themes + light_img = nodes.image(uri=light_img_path, classes=['light-theme']) + dark_img = nodes.image(uri=dark_img_path, classes=['dark-theme']) + + # Apply options to both images + for option_name, option_value in self.options.items(): + if option_name == 'class': + # Add the classes to the existing ones + light_img['classes'].extend(option_value) + dark_img['classes'].extend(option_value) + else: + light_img[option_name] = option_value + dark_img[option_name] = option_value + + # Create a container for the images + themed_image_node = nodes.container(classes=['themed-image-container']) + themed_image_node += light_img + themed_image_node += dark_img + + set_source_info(self, themed_image_node) + return [themed_image_node] \ No newline at end of file diff --git a/ipas_default.config b/ipas_default.config new file mode 100644 index 0000000..17e23fe --- /dev/null +++ b/ipas_default.config @@ -0,0 +1,399 @@ + +### Bandit config file generated from: +# './bandit/bandit/cli/config_generator.py --out ipas_default.config' + +### This config may optionally select a subset of tests to run or skip by +### filling out the 'tests' and 'skips' lists given below. If no tests are +### specified for inclusion then it is assumed all tests are desired. The skips +### set will remove specific tests from the include set. This can be controlled +### using the -t/-s CLI options. Note that the same test ID should not appear +### in both 'tests' and 'skips', this would be nonsensical and is detected by +### Bandit at runtime. + +# Available tests: +# B101 : assert_used +# B102 : exec_used +# B103 : set_bad_file_permissions +# B104 : hardcoded_bind_all_interfaces +# B105 : hardcoded_password_string +# B106 : hardcoded_password_funcarg +# B107 : hardcoded_password_default +# B108 : hardcoded_tmp_directory +# B110 : try_except_pass +# B112 : try_except_continue +# B201 : flask_debug_true +# B301 : pickle +# B302 : marshal +# B303 : md5 +# B304 : ciphers +# B305 : cipher_modes +# B306 : mktemp_q +# B307 : eval +# B308 : mark_safe +# B310 : urllib_urlopen +# B311 : random +# B312 : telnetlib +# B313 : xml_bad_cElementTree +# B314 : xml_bad_ElementTree +# B315 : xml_bad_expatreader +# B316 : xml_bad_expatbuilder +# B317 : xml_bad_sax +# B318 : xml_bad_minidom +# B319 : xml_bad_pulldom +# B321 : ftplib +# B323 : unverified_context +# B324 : hashlib_new_insecure_functions +# B401 : import_telnetlib +# B402 : import_ftplib +# B403 : import_pickle +# B404 : import_subprocess +# B405 : import_xml_etree +# B406 : import_xml_sax +# B407 : import_xml_expat +# B408 : import_xml_minidom +# B409 : import_xml_pulldom +# B411 : import_xmlrpclib +# B412 : import_httpoxy +# B413 : import_pycrypto +# B501 : request_with_no_cert_validation +# B502 : ssl_with_bad_version +# B503 : ssl_with_bad_defaults +# B504 : ssl_with_no_version +# B505 : weak_cryptographic_key +# B506 : yaml_load +# B507 : ssh_no_host_key_verification +# B601 : paramiko_calls +# B602 : subprocess_popen_with_shell_equals_true +# B603 : subprocess_without_shell_equals_true +# B604 : any_other_function_with_shell_equals_true +# B605 : start_process_with_a_shell +# B606 : start_process_with_no_shell +# B607 : start_process_with_partial_path +# B608 : hardcoded_sql_expressions +# B609 : linux_commands_wildcard_injection +# B610 : django_extra_used +# B611 : django_rawsql_used +# B701 : jinja2_autoescape_false +# B702 : use_of_mako_templates +# B703 : django_mark_safe + +# (optional) list included test IDs here, eg '[B101, B406]': +# IPAS Required Checkers. Do not disable these +# Additional checkers may be added if desired +tests: + [ 'B301', 'B302', 'B303', 'B304', 'B305', 'B306', 'B308', 'B310', 'B311', 'B312', 'B313', 'B314', 'B315', 'B316', 'B317', 'B318', 'B319', 'B321', 'B323', 'B324', 'B401', 'B402', 'B403', 'B404', 'B405', 'B406', 'B407', 'B408', 'B409', 'B411', 'B412', 'B413'] + +# (optional) list skipped test IDs here, eg '[B101, B406]': +# The following checkers are not required but be added to tests list if desired +skips: + [ 'B101', 'B102', 'B103', 'B104', 'B105', 'B106', 'B107', 'B108', 'B110', 'B112', 'B201', 'B501', 'B502', 'B503', 'B504', 'B505', 'B506', 'B507', 'B601', 'B602', 'B603', 'B604', 'B605', 'B606', 'B607', 'B608', 'B609', 'B610', 'B611', 'B701', 'B702', 'B703'] + +### (optional) plugin settings - some test plugins require configuration data +### that may be given here, per-plugin. All bandit test plugins have a built in +### set of sensible defaults and these will be used if no configuration is +### provided. It is not necessary to provide settings for every (or any) plugin +### if the defaults are acceptable. + +any_other_function_with_shell_equals_true: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +assert_used: + skips: [] +hardcoded_tmp_directory: + tmp_dirs: + - /tmp + - /var/tmp + - /dev/shm +linux_commands_wildcard_injection: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +ssl_with_bad_defaults: + bad_protocol_versions: + - PROTOCOL_SSLv2 + - SSLv2_METHOD + - SSLv23_METHOD + - PROTOCOL_SSLv3 + - PROTOCOL_TLSv1 + - SSLv3_METHOD + - TLSv1_METHOD +ssl_with_bad_version: + bad_protocol_versions: + - PROTOCOL_SSLv2 + - SSLv2_METHOD + - SSLv23_METHOD + - PROTOCOL_SSLv3 + - PROTOCOL_TLSv1 + - SSLv3_METHOD + - TLSv1_METHOD +start_process_with_a_shell: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +start_process_with_no_shell: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +start_process_with_partial_path: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +subprocess_popen_with_shell_equals_true: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +subprocess_without_shell_equals_true: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + subprocess: + - subprocess.Popen + - subprocess.call + - subprocess.check_call + - subprocess.check_output + - subprocess.run +try_except_continue: + check_typed_exception: false +try_except_pass: + check_typed_exception: false +weak_cryptographic_key: + weak_key_size_dsa_high: 1024 + weak_key_size_dsa_medium: 2048 + weak_key_size_ec_high: 160 + weak_key_size_ec_medium: 224 + weak_key_size_rsa_high: 1024 + weak_key_size_rsa_medium: 2048 + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1501cb9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,54 @@ +[tool.semantic_release] +build_command_env = [] +commit_message = "chore: release v{version}\n\nAutomatically generated by python-semantic-release" +commit_parser = "conventional" +logging_use_named_masks = false +major_on_zero = true +allow_zero_version = true +repo_dir = "." +no_git_verify = false +tag_format = "v{version}" +version_variables = [ + "intel_sphinx_theme/__version__.py:__version__" +] +build_command = "python -m build" + +[tool.semantic_release.branches.main] +match = "(main)" +prerelease_token = "rc" +prerelease = false + +[tool.semantic_release.changelog] +exclude_commit_patterns = [] +mode = "init" +insertion_flag = "" +template_dir = "templates" + +[tool.semantic_release.changelog.default_templates] +changelog_file = "CHANGELOG.md" +output_format = "md" +mask_initial_release = false + +[tool.semantic_release.changelog.environment] +block_start_string = "{%" +block_end_string = "%}" +variable_start_string = "{{" +variable_end_string = "}}" +comment_start_string = "{#" +comment_end_string = "#}" +trim_blocks = false +lstrip_blocks = false +newline_sequence = "\n" +keep_trailing_newline = false +extensions = [] +autoescape = false + +[tool.semantic_release.remote] +name = "origin" +type = "github" +ignore_token_for_push = false +insecure = false + +[tool.semantic_release.publish] +dist_glob_patterns = ["dist/*"] +upload_to_vcs_release = true \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2077aeb --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +sphinx==7.3.7 +pydata-sphinx-theme~=0.16.0,!=0.16.1 +sphinx-copybutton==0.5.0 +sphinxcontrib-images==1.0.1 +setuptools \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7a6ec9b --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +import os +from setuptools import setup, find_namespace_packages + +# Dynamically load the version from the __version__ variable in the package +def get_version(): + version_file = os.path.join(os.path.dirname(__file__), "intel_sphinx_theme", "__version__.py") + with open(version_file, "r") as fp: + for line in fp: + if line.startswith("__version__"): + # Extract the version string and ignore comments + return line.split("=")[1].strip().strip('"').strip("'") + raise RuntimeError("Unable to find version string in intel_sphinx_theme/__version__.py") + +setup( + name='intel-sphinx-theme', + version=get_version(), # Dynamically set the version + packages=find_namespace_packages(), + maintainer='Erin Olmon, Agustín Francesa', + maintainer_email='erin.olmon@intel.com, agustin.francesa.alfaro@intel.com', + include_package_data=True, + entry_points={"sphinx.html_themes": ["intel_sphinx_theme = intel_sphinx_theme"]}, + python_requires='>=3.5', + url='https://github.com/intel/intel-sphinx-theme', + license='Apache 2.0', + author='Intel Corporation', + author_email='', + description='Intel Branded Sphinx Theme', + long_description='Intel branded sphinx theme that inherits from pydata-sphinx-theme', + install_requires=[ + 'sphinx==7.3.7', + 'pydata-sphinx-theme~=0.16.0,!=0.16.1', + 'sphinx-copybutton==0.5.0', + 'sphinxcontrib-images==1.0.1', + 'setuptools' + ], +)