npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

revealjs-theme-touraine-tech

v1.0.0

Published

Theme reveal.js officiel pour Touraine Tech

Downloads

5

Readme

Touraine Tech - Theme reveal.js

Theme reveal.js officiel pour les conférences Touraine Tech.

Preview

Installation

Via CDN (recommandé)

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/revealjs-theme-touraine-tech/dist/touraine-tech.css">

Via npm

npm install revealjs-theme-touraine-tech
<link rel="stylesheet" href="node_modules/revealjs-theme-touraine-tech/dist/touraine-tech.css">

Utilisation rapide

<!doctype html>
<html lang="fr">
<head>
  <meta charset="utf-8">
  <title>Ma présentation - Touraine Tech</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/reset.css">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.css">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/revealjs-theme-touraine-tech/dist/touraine-tech.css">
</head>
<body>
  <div class="reveal">
    <div class="slides">
      <section class="cover">
        <h1>Titre de ma présentation</h1>
        <p>Mon nom</p>
      </section>

      <section>
        <h1>Mon contenu</h1>
        <ul>
          <li>Point 1</li>
          <li>Point 2</li>
        </ul>
      </section>

      <section class="end">
        <h1>Merci !</h1>
        <p>Des questions ?</p>
      </section>
    </div>
  </div>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.js"></script>
  <script>Reveal.initialize();</script>
</body>
</html>

Layouts disponibles

| Classe | Description | |--------|-------------| | cover | Slide de titre avec logo centré | | section | Slide de transition (avec triangles décoratifs) | | default | Slide de contenu (titre avec bordure turquoise) | | end | Slide de fin "Merci !" | | two-cols | Layout à deux colonnes |

Slide cover

<section class="cover">
  <h1>Titre de la présentation</h1>
  <p>Nom du speaker</p>
</section>

Slide section

<section class="section">
  <h1>Nouvelle partie</h1>
  <p>Description optionnelle</p>
</section>

Slide deux colonnes

<section class="two-cols">
  <div class="col">
    <h2>Gauche</h2>
    <ul>
      <li>Point A</li>
      <li>Point B</li>
    </ul>
  </div>
  <div class="col">
    <h2>Droite</h2>
    <p>Contenu texte</p>
  </div>
</section>

Footer (Logo + Handle Twitter)

Ajoutez un footer global avec le logo TNT et votre handle Twitter. Placez-le dans le <div class="reveal"> mais en dehors des slides :

<div class="reveal">
  <div class="slides">
    <!-- Vos slides ici -->
  </div>

  <!-- Footer global -->
  <div class="slide-footer">
    <div class="tnt-logo tnt-logo--inverted">
      <!-- SVG du logo TNT -->
    </div>
    <span class="speaker-handle">@VotreHandle</span>
  </div>
</div>

Le footer affiche :

  • Logo TNT en bas à gauche
  • Handle Twitter en bas à droite

Le footer est visible sur toutes les slides. Utilisez .slide-footer.light pour les présentations avec slides claires.

Couleurs

| Variable CSS | Valeur | Usage | |--------------|--------|-------| | --tnt-primary | #222333 | Bleu foncé (fond) | | --tnt-secondary | #6ABFAD | Turquoise (accents) | | --tnt-white | #ffffff | Blanc |

Classes utilitaires

<!-- Couleurs de fond -->
<div class="bg-tnt-primary">...</div>
<div class="bg-tnt-secondary">...</div>

<!-- Couleurs de texte -->
<span class="text-tnt-primary">...</span>
<span class="text-tnt-secondary">...</span>
<span class="text-tnt-white">...</span>

<!-- Alignement -->
<p class="text-center">...</p>
<p class="text-left">...</p>
<p class="text-right">...</p>

Logo TNT

Le logo est inclus en SVG avec plusieurs tailles :

<div class="tnt-logo tnt-logo--xl tnt-logo--inverted">
  <!-- SVG du logo -->
</div>

| Classe | Largeur | |--------|---------| | tnt-logo--sm | 80px | | tnt-logo--md | 150px | | tnt-logo--lg | 250px | | tnt-logo--xl | 400px |

Ajoutez tnt-logo--inverted pour les fonds foncés (logo blanc).

Polices

Le thème utilise :

  • Noto Sans pour le texte
  • Fira Code pour le code

Elles sont chargées automatiquement via Google Fonts.

Liens

Licence

MIT - Touraine Tech