シンプル 黄色

image0 image1

このテーマの特徴

テーマの特徴:

このCSSテーマは、以下のような特徴があります。

  • 鮮やかな配色: ヘッダーはオレンジ色と黄色のグラデーション、フッターはオレンジ色、セクションは黄色で鮮やかな配色を特徴としています。

  • 大きいフォントサイズ: セクションのフォントサイズは24pt、ヘッダーは20pt、フッターは16ptと大きめに設定されています。

  • 中央揃えのタイトルセクション: タイトルセクションは黄色で、テキストは中央揃えにされています。

このテーマは、以下の用途に適しています。

  • 明るく、大胆なプレゼンテーション
  • 重要なポイントを視覚的に強調する必要があるプレゼンテーション
  • レイヤー化されたデザインを使用したプレゼンテーション

このテーマを利用する

CSS

/* @theme custom_theme */
@import default;

section {
  display: flex;
  flex-direction: column;
  font-size: 24pt;
  padding: 20px;
  margin-top: 40px;
  background-color: #f3d599;
}

header {
  position: fixed;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(to right, #ff9900, #ffcc00);
  color: #ffffff;
  top: 0px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0px 2px 4px #00000029;
  font-size: 20pt;
  z-index: 999;
}

footer {
  width: 100%;
  position: fixed;
  padding: 10px;
  background: #ff9900;
  color: #ffffff;
  bottom: 0px;
  display: flex;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px -2px 4px #00000029;
  font-size: 16pt;
}

section.title {
  background-color: #ffcc00;
  color: #000000;
  padding: 20px;
  text-align: center;
  font-size: 36pt;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.title footer {
  position: relative;
  margin-top: auto;
}

Marpのサンプル

---
marp: true
theme: custom_theme
header: " "
footer: " "
---
<!--
_class: title
-->

# タイトル

---

<!--
_class: section
-->

## セクション

- リスト 1
- リスト 2

<!--
_class: section
-->

## 別のセクション

- リスト 3
- リスト 4

---

<!--
_class: section
-->

## さらに別のセクション

- リスト 5
- リスト 6