学习目标

  • 了解如何自定义Tailwind配置以匹配GitHub的设计系统
  • 掌握颜色系统、字体、间距和圆角的调整方法
  • 创建与GitHub一致的设计变量和主题
  • 学习如何扩展Tailwind以支持GitHub特有的UI模式
  • 构建可复用的配置基础,为后续章节做准备

GitHub设计系统分析

GitHub拥有一套精心设计的视觉语言,包括颜色、排版、间距和组件样式。为了准确复刻这一界面,我们需要调整Tailwind CSS的默认配置,使其与GitHub的设计规范保持一致。

GitHub的设计系统特点:

  • 简洁的蓝灰色调配色方案
  • 清晰的层级关系和间距规律
  • 一致的圆角半径和边框样式
  • 系统字体栈优先(无自定义字体)
  • 功能性色彩编码(状态、类型标识)

创建自定义配置文件

首先,我们需要创建一个完整的tailwind.config.js文件来存放我们的自定义配置。这将是整个项目的样式基础。

  1. // tailwind.config.js
  2. module.exports = {
  3. content: ["./**/*.{html,js}"],
  4. theme: {
  5. extend: {
  6. colors: {
  7. // GitHub主色调
  8. "github-blue": "#0969da",
  9. "github-green": "#2da44e",
  10. "github-red": "#cf222e",
  11. "github-yellow": "#bf8700",
  12. "github-purple": "#8250df",
  13. // GitHub灰度和基础色
  14. "github-bg": "#f6f8fa",
  15. "github-border": "#d0d7de",
  16. "github-text-primary": "#24292f",
  17. "github-text-secondary": "#57606a",
  18. // 扩展色彩
  19. "github-header-bg": "#24292f",
  20. "github-header-text": "#ffffff",
  21. "github-hover": "#f3f4f6",
  22. "github-active": "#0969da14",
  23. "github-button-hover": "#f3f4f6",
  24. "github-button-active": "#ebecf0",
  25. },
  26. fontFamily: {
  27. // GitHub使用系统字体栈
  28. "github": [
  29. "-apple-system",
  30. "BlinkMacSystemFont",
  31. "Segoe UI",
  32. "Noto Sans",
  33. "Helvetica",
  34. "Arial",
  35. "sans-serif",
  36. "Apple Color Emoji",
  37. "Segoe UI Emoji"
  38. ],
  39. },
  40. fontSize: {
  41. // GitHub字体尺寸
  42. "github-xs": ["12px", "18px"],
  43. "github-sm": ["14px", "20px"],
  44. "github-base": ["16px", "24px"],
  45. "github-lg": ["20px", "30px"],
  46. "github-xl": ["24px", "36px"],
  47. },
  48. spacing: {
  49. // GitHub常用间距
  50. "github-1": "4px",
  51. "github-2": "8px",
  52. "github-3": "16px",
  53. "github-4": "24px",
  54. "github-5": "32px",
  55. "github-6": "40px",
  56. },
  57. borderRadius: {
  58. // GitHub常用圆角
  59. "github-sm": "3px",
  60. "github-md": "6px",
  61. "github-lg": "12px",
  62. },
  63. boxShadow: {
  64. // GitHub常用阴影
  65. "github-sm": "0 1px 0 rgba(27, 31, 36, 0.04)",
  66. "github-md": "0 3px 6px rgba(140, 149, 159, 0.15)",
  67. "github-lg": "0 8px 24px rgba(140, 149, 159, 0.2)",
  68. "github-dropdown": "0 1px 3px rgba(27, 31, 36, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12)",
  69. "github-btn": "0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25)",
  70. },
  71. },
  72. },
  73. plugins: [],
  74. }

GitHub颜色系统实现

GitHub的颜色系统是其视觉识别的关键。让我们详细了解如何通过Tailwind CSS实现这一系统。

基础色彩应用示例

下面是一个使用我们自定义颜色的简单导航栏示例:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub Header - Tailwind CSS Clone</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. colors: {
  13. "github-blue": "#0969da",
  14. "github-green": "#2da44e",
  15. "github-red": "#cf222e",
  16. "github-yellow": "#bf8700",
  17. "github-purple": "#8250df",
  18. "github-bg": "#f6f8fa",
  19. "github-border": "#d0d7de",
  20. "github-text-primary": "#24292f",
  21. "github-text-secondary": "#57606a",
  22. "github-header-bg": "#24292f",
  23. "github-header-text": "#ffffff",
  24. }
  25. }
  26. }
  27. }
  28. </script>
  29. </head>
  30. <body class="font-sans">
  31. <!-- 顶部导航栏 -->
  32. <header class="bg-github-header-bg text-github-header-text px-4 py-3 flex items-center">
  33. <!-- GitHub Logo -->
  34. <svg height="32" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="32" class="fill-current">
  35. <path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"></path>
  36. </svg>
  37. <!-- 搜索框 -->
  38. <div class="mx-4 relative flex-grow max-w-xl">
  39. <input type="text" placeholder="Search or jump to..."
  40. class="w-full py-1 px-3 bg-github-header-bg border border-gray-600 rounded-md text-sm text-white placeholder-gray-400 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 focus:outline-none">
  41. </div>
  42. <!-- 导航链接 -->
  43. <nav class="hidden md:flex space-x-4">
  44. <a href="#" class="text-github-header-text hover:text-gray-300">Pull requests</a>
  45. <a href="#" class="text-github-header-text hover:text-gray-300">Issues</a>
  46. <a href="#" class="text-github-header-text hover:text-gray-300">Marketplace</a>
  47. <a href="#" class="text-github-header-text hover:text-gray-300">Explore</a>
  48. </nav>
  49. </header>
  50. <!-- 示例内容区域 -->
  51. <main class="max-w-7xl mx-auto p-4">
  52. <div class="bg-white border border-github-border rounded-md p-4 mb-4">
  53. <h2 class="text-github-text-primary text-xl font-semibold mb-2">Repository Example</h2>
  54. <p class="text-github-text-secondary mb-4">This is an example of GitHub's text and border colors in action.</p>
  55. <!-- 按钮示例 -->
  56. <div class="flex space-x-2">
  57. <button class="bg-github-green text-white px-3 py-1 rounded-md hover:bg-opacity-90">Clone</button>
  58. <button class="bg-github-bg text-github-text-primary border border-github-border px-3 py-1 rounded-md hover:bg-gray-100">
  59. Watch
  60. </button>
  61. <button class="bg-github-bg text-github-red border border-github-border px-3 py-1 rounded-md hover:bg-gray-100">
  62. Issues
  63. </button>
  64. </div>
  65. </div>
  66. <!-- 状态标签示例 -->
  67. <div class="flex flex-wrap gap-2 mb-4">
  68. <span class="bg-github-green bg-opacity-10 text-github-green px-2 py-0.5 rounded-full text-xs font-medium">Open</span>
  69. <span class="bg-github-red bg-opacity-10 text-github-red px-2 py-0.5 rounded-full text-xs font-medium">Closed</span>
  70. <span class="bg-github-purple bg-opacity-10 text-github-purple px-2 py-0.5 rounded-full text-xs font-medium">Merged</span>
  71. <span class="bg-github-yellow bg-opacity-10 text-github-yellow px-2 py-0.5 rounded-full text-xs font-medium">Pending</span>
  72. <span class="bg-github-blue bg-opacity-10 text-github-blue px-2 py-0.5 rounded-full text-xs font-medium">Info</span>
  73. </div>
  74. </main>
  75. </body>
  76. </html>

这个示例展示了如何使用我们自定义的GitHub颜色系统创建一个基本的GitHub风格页面头部和内容区域。

提示:在实际项目中,我们会使用独立的tailwind.config.js文件而不是内联配置。这里使用内联配置是为了让示例可以直接运行。

字体系统配置

GitHub使用系统字体栈而非自定义网络字体,这提高了性能并确保界面在不同操作系统上具有原生感。

字体应用示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub Typography - Tailwind CSS Clone</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. fontFamily: {
  13. "github": [
  14. "-apple-system",
  15. "BlinkMacSystemFont",
  16. "Segoe UI",
  17. "Noto Sans",
  18. "Helvetica",
  19. "Arial",
  20. "sans-serif",
  21. "Apple Color Emoji",
  22. "Segoe UI Emoji"
  23. ],
  24. },
  25. fontSize: {
  26. "github-xs": ["12px", "18px"],
  27. "github-sm": ["14px", "20px"],
  28. "github-base": ["16px", "24px"],
  29. "github-lg": ["20px", "30px"],
  30. "github-xl": ["24px", "36px"],
  31. },
  32. colors: {
  33. "github-text-primary": "#24292f",
  34. "github-text-secondary": "#57606a",
  35. }
  36. }
  37. }
  38. }
  39. </script>
  40. </head>
  41. <body class="font-github p-8 max-w-4xl mx-auto">
  42. <h1 class="text-github-xl font-semibold text-github-text-primary mb-4">
  43. GitHub Typography System
  44. </h1>
  45. <h2 class="text-github-lg font-semibold text-github-text-primary mb-2">
  46. Heading Level 2
  47. </h2>
  48. <p class="text-github-base text-github-text-primary mb-4">
  49. This is the base text size used in most GitHub content areas. GitHub uses system fonts for better performance and native feel.
  50. </p>
  51. <h3 class="text-github-base font-semibold text-github-text-primary mb-2">
  52. Section Heading
  53. </h3>
  54. <p class="text-github-sm text-github-text-secondary mb-4">
  55. Secondary text is slightly smaller and uses a lighter color to create visual hierarchy. GitHub's design system relies on size and weight variations rather than many different fonts.
  56. </p>
  57. <div class="border border-gray-200 rounded-md p-4 mb-4">
  58. <code class="text-github-sm font-mono">
  59. // Example code uses monospace font<br>
  60. function githubTypography() {<br>
  61. &nbsp;&nbsp;console.log("GitHub uses system fonts");<br>
  62. }
  63. </code>
  64. </div>
  65. <p class="text-github-xs text-github-text-secondary">
  66. The smallest text is used for metadata, timestamps, and auxiliary information. It's 12px with appropriate line height.
  67. </p>
  68. </body>
  69. </html>

这个示例展示了GitHub的字体系统在不同级别标题和文本中的应用。

间距与布局系统

GitHub使用一致的间距比例来维持整个界面的视觉和谐。我们已经在配置文件中定义了这些间距,现在让我们看看它们的实际应用。

间距系统示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub Spacing System - Tailwind CSS Clone</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. spacing: {
  13. "github-1": "4px",
  14. "github-2": "8px",
  15. "github-3": "16px",
  16. "github-4": "24px",
  17. "github-5": "32px",
  18. "github-6": "40px",
  19. },
  20. colors: {
  21. "github-border": "#d0d7de",
  22. "github-bg": "#f6f8fa",
  23. "github-text-primary": "#24292f",
  24. "github-text-secondary": "#57606a",
  25. }
  26. }
  27. }
  28. }
  29. </script>
  30. </head>
  31. <body class="font-sans p-github-4 max-w-4xl mx-auto">
  32. <h1 class="text-2xl font-semibold text-github-text-primary mb-github-4">
  33. GitHub Spacing System
  34. </h1>
  35. <!-- 间距示例容器 -->
  36. <div class="border border-github-border rounded-md p-github-3 mb-github-4 bg-white">
  37. <h2 class="font-semibold mb-github-3">Card Element with GitHub Spacing</h2>
  38. <div class="flex items-center mb-github-3">
  39. <!-- 头像 -->
  40. <div class="w-10 h-10 rounded-full bg-github-bg mr-github-2 flex items-center justify-center">
  41. <span>👤</span>
  42. </div>
  43. <!-- 用户信息 -->
  44. <div>
  45. <p class="font-semibold">Username</p>
  46. <p class="text-sm text-github-text-secondary">Committed 2 hours ago</p>
  47. </div>
  48. </div>
  49. <p class="mb-github-3">
  50. This card uses GitHub's standard spacing system. Notice how the margin and padding values create a consistent rhythm.
  51. </p>
  52. <!-- 按钮行 -->
  53. <div class="flex space-x-github-2">
  54. <button class="px-github-2 py-github-1 bg-github-bg border border-github-border rounded-md text-sm">
  55. Details
  56. </button>
  57. <button class="px-github-2 py-github-1 bg-github-bg border border-github-border rounded-md text-sm">
  58. View
  59. </button>
  60. </div>
  61. </div>
  62. <!-- 间距比例展示 -->
  63. <div class="space-y-github-2 mb-github-4">
  64. <div class="h-github-1 bg-blue-500 w-16"></div>
  65. <div class="h-github-2 bg-blue-500 w-24"></div>
  66. <div class="h-github-3 bg-blue-500 w-32"></div>
  67. <div class="h-github-4 bg-blue-500 w-40"></div>
  68. <div class="h-github-5 bg-blue-500 w-48"></div>
  69. <div class="h-github-6 bg-blue-500 w-56"></div>
  70. </div>
  71. <p class="text-sm text-github-text-secondary">
  72. GitHub's spacing scale follows a geometric progression starting at 4px, helping maintain consistent proportions throughout the interface.
  73. </p>
  74. </body>
  75. </html>

这个示例展示了GitHub的间距系统如何创建一致的视觉层次和节奏。

阴影和圆角系统

GitHub使用微妙的阴影和一致的圆角来创建界面的深度和层次。这些细节对于完美复刻GitHub的视觉风格至关重要。

阴影和圆角应用示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub Shadows & Borders - Tailwind CSS Clone</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. boxShadow: {
  13. "github-sm": "0 1px 0 rgba(27, 31, 36, 0.04)",
  14. "github-md": "0 3px 6px rgba(140, 149, 159, 0.15)",
  15. "github-lg": "0 8px 24px rgba(140, 149, 159, 0.2)",
  16. "github-dropdown": "0 1px 3px rgba(27, 31, 36, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12)",
  17. "github-btn": "0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25)",
  18. },
  19. borderRadius: {
  20. "github-sm": "3px",
  21. "github-md": "6px",
  22. "github-lg": "12px",
  23. },
  24. colors: {
  25. "github-border": "#d0d7de",
  26. "github-bg": "#f6f8fa",
  27. "github-text-primary": "#24292f",
  28. "github-text-secondary": "#57606a",
  29. "github-blue": "#0969da",
  30. }
  31. }
  32. }
  33. }
  34. </script>
  35. </head>
  36. <body class="font-sans p-8 max-w-4xl mx-auto">
  37. <h1 class="text-2xl font-semibold text-github-text-primary mb-6">
  38. GitHub Shadows & Border Radius
  39. </h1>
  40. <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
  41. <!-- 按钮阴影 -->
  42. <div class="border border-github-border rounded-github-md p-4">
  43. <h3 class="text-lg font-semibold mb-4">Button Shadow</h3>
  44. <button class="bg-white border border-github-border rounded-github-sm px-3 py-1.5 shadow-github-btn hover:bg-github-bg text-github-text-primary">
  45. Default Button
  46. </button>
  47. <div class="mt-4">
  48. <code class="text-sm">shadow-github-btn</code>
  49. <p class="text-sm text-github-text-secondary mt-1">
  50. Used for buttons with subtle depth. Includes an inset highlight at the top.
  51. </p>
  52. </div>
  53. </div>
  54. <!-- 卡片阴影 -->
  55. <div class="border border-github-border rounded-github-md p-4">
  56. <h3 class="text-lg font-semibold mb-4">Card Shadow</h3>
  57. <div class="bg-white border border-github-border rounded-github-md p-4 shadow-github-md">
  58. Card with medium shadow
  59. </div>
  60. <div class="mt-4">
  61. <code class="text-sm">shadow-github-md</code>
  62. <p class="text-sm text-github-text-secondary mt-1">
  63. Used for cards and elevated containers.
  64. </p>
  65. </div>
  66. </div>
  67. <!-- 下拉菜单阴影 -->
  68. <div class="border border-github-border rounded-github-md p-4">
  69. <h3 class="text-lg font-semibold mb-4">Dropdown Shadow</h3>
  70. <div class="bg-white border border-github-border rounded-github-md p-4 shadow-github-dropdown">
  71. Dropdown with pronounced shadow
  72. </div>
  73. <div class="mt-4">
  74. <code class="text-sm">shadow-github-dropdown</code>
  75. <p class="text-sm text-github-text-secondary mt-1">
  76. Used for dropdown menus and popovers with greater depth.
  77. </p>
  78. </div>
  79. </div>
  80. <!-- 大型阴影 -->
  81. <div class="border border-github-border rounded-github-md p-4">
  82. <h3 class="text-lg font-semibold mb-4">Large Shadow</h3>
  83. <div class="bg-white border border-github-border rounded-github-md p-4 shadow-github-lg">
  84. Modal with large shadow
  85. </div>
  86. <div class="mt-4">
  87. <code class="text-sm">shadow-github-lg</code>
  88. <p class="text-sm text-github-text-secondary mt-1">
  89. Used for modals and dialogs floating above the interface.
  90. </p>
  91. </div>
  92. </div>
  93. </div>
  94. <!-- 圆角示例 -->
  95. <h2 class="text-xl font-semibold text-github-text-primary mb-4">
  96. Border Radius Examples
  97. </h2>
  98. <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
  99. <div class="border border-github-border rounded-github-sm bg-github-bg p-4 text-center">
  100. <div class="mb-2">Small Radius (3px)</div>
  101. <code class="text-sm">rounded-github-sm</code>
  102. </div>
  103. <div class="border border-github-border rounded-github-md bg-github-bg p-4 text-center">
  104. <div class="mb-2">Medium Radius (6px)</div>
  105. <code class="text-sm">rounded-github-md</code>
  106. </div>
  107. <div class="border border-github-border rounded-github-lg bg-github-bg p-4 text-center">
  108. <div class="mb-2">Large Radius (12px)</div>
  109. <code class="text-sm">rounded-github-lg</code>
  110. </div>
  111. </div>
  112. </body>
  113. </html>

实际案例:GitHub风格导航栏

现在,让我们把所有的自定义配置结合起来,创建一个完整的GitHub风格导航栏,展示如何应用我们的配置系统:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>GitHub Header with Custom Config - Tailwind CSS Clone</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <!-- Heroicons CDN -->
  9. <script src="https://unpkg.com/heroicons@2.0.18/24/outline/esm/index.js"></script>
  10. <script>
  11. tailwind.config = {
  12. theme: {
  13. extend: {
  14. colors: {
  15. "github-blue": "#0969da",
  16. "github-green": "#2da44e",
  17. "github-red": "#cf222e",
  18. "github-yellow": "#bf8700",
  19. "github-purple": "#8250df",
  20. "github-bg": "#f6f8fa",
  21. "github-border": "#d0d7de",
  22. "github-text-primary": "#24292f",
  23. "github-text-secondary": "#57606a",
  24. "github-header-bg": "#24292f",
  25. "github-header-text": "#ffffff",
  26. },
  27. fontFamily: {
  28. "github": [
  29. "-apple-system",
  30. "BlinkMacSystemFont",
  31. "Segoe UI",
  32. "Noto Sans",
  33. "Helvetica",
  34. "Arial",
  35. "sans-serif",
  36. "Apple Color Emoji",
  37. "Segoe UI Emoji"
  38. ],
  39. },
  40. fontSize: {
  41. "github-sm": ["14px", "20px"],
  42. },
  43. spacing: {
  44. "github-2": "8px",
  45. "github-3": "16px",
  46. },
  47. borderRadius: {
  48. "github-sm": "3px",
  49. "github-md": "6px",
  50. },
  51. boxShadow: {
  52. "github-dropdown": "0 1px 3px rgba(27, 31, 36, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12)",
  53. }
  54. }
  55. }
  56. }
  57. </script>
  58. </head>
  59. <body class="font-github">
  60. <!-- GitHub Header -->
  61. <header class="bg-github-header-bg text-github-header-text">
  62. <!-- 顶部导航栏 -->
  63. <div class="px-github-3 py-4 flex items-center justify-between">
  64. <div class="flex items-center">
  65. <!-- GitHub Logo -->
  66. <svg height="32" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="32" class="fill-current">
  67. <path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"></path>
  68. </svg>
  69. <!-- 主导航 -->
  70. <nav class="hidden md:flex ml-4">
  71. <a href="#" class="px-github-2 py-1 text-github-header-text hover:text-gray-300">
  72. Product
  73. </a>
  74. <a href="#" class="px-github-2 py-1 text-github-header-text hover:text-gray-300">
  75. Solutions
  76. </a>
  77. <a href="#" class="px-github-2 py-1 text-github-header-text hover:text-gray-300">
  78. Open Source
  79. </a>
  80. <a href="#" class="px-github-2 py-1 text-github-header-text hover:text-gray-300">
  81. Pricing
  82. </a>
  83. </nav>
  84. </div>
  85. <!-- 搜索框和导航工具 -->
  86. <div class="flex items-center">
  87. <!-- 搜索框 -->
  88. <div class="relative mx-2 hidden md:block w-64">
  89. <input type="text" placeholder="Search or jump to..."
  90. class="w-full py-1 px-3 bg-github-header-bg border border-gray-600 rounded-github-sm text-github-sm text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-github-blue focus:border-blue-500">
  91. <div class="absolute right-2 top-1.5 border border-gray-600 rounded-sm px-1 text-xs text-gray-400">/</div>
  92. </div>
  93. <!-- 移动端菜单按钮 -->
  94. <button class="md:hidden text-white">
  95. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
  96. <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
  97. </svg>
  98. </button>
  99. <!-- 通知图标 -->
  100. <button class="ml-2 text-white relative">
  101. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5">
  102. <path stroke-linecap="round" stroke-linejoin="round" d="M14.857 17.082a23.848 23.848 0 005.454-1.31A8.967 8.967 0 0118 9.75v-.7V9A6 6 0 006 9v.75a8.967 8.967 0 01-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 01-5.714 0m5.714 0a3 3 0 11-5.714 0" />
  103. </svg>
  104. <!-- 通知徽章 -->
  105. <span class="absolute -top-1 -right-1 bg-github-blue text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">
  106. 3
  107. </span>
  108. </button>
  109. <!-- 创建下拉菜单 -->
  110. <div class="relative ml-2 hidden md:block">
  111. <button class="flex items-center text-white">
  112. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 mr-0.5">
  113. <path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
  114. </svg>
  115. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-3 h-3">
  116. <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" />
  117. </svg>
  118. </button>
  119. </div>
  120. <!-- 用户头像 -->
  121. <div class="ml-2 relative">
  122. <button class="flex items-center">
  123. <div class="w-5 h-5 rounded-full bg-white overflow-hidden">
  124. <!-- 用户头像占位符 -->
  125. <div class="bg-github-blue w-full h-full flex items-center justify-center text-white text-xs">U</div>
  126. </div>
  127. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-3 h-3 ml-0.5 text-white">
  128. <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" />
  129. </svg>
  130. </button>
  131. </div>
  132. </div>
  133. </div>
  134. </header>
  135. <!-- 主内容区域 -->
  136. <main class="max-w-7xl mx-auto px-github-3 py-6">
  137. <div class="bg-white border border-github-border rounded-github-md p-4 mb-6">
  138. <h2 class="text-github-text-primary text-xl font-semibold mb-2">GitHub Style Header with Custom Tailwind Config</h2>
  139. <p class="text-github-text-secondary mb-4">
  140. This example demonstrates how our custom Tailwind configuration can be used to accurately replicate GitHub's interface styling.
  141. All colors, spacing, and component styles are based on GitHub's design system.
  142. </p>
  143. <!-- 自定义配置优势 -->
  144. <div class="bg-github-bg border border-github-border rounded-github-md p-3">
  145. <h3 class="font-semibold mb-2">Benefits of Custom Configuration</h3>
  146. <ul class="space-y-2 text-github-text-secondary">
  147. <li class="flex items-start">
  148. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 text-github-green mr-2 flex-shrink-0">
  149. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  150. </svg>
  151. <span>Consistent design language across all components</span>
  152. </li>
  153. <li class="flex items-start">
  154. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 text-github-green mr-2 flex-shrink-0">
  155. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  156. </svg>
  157. <span>Semantic class names that reflect GitHub's terminology</span>
  158. </li>
  159. <li class="flex items-start">
  160. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 text-github-green mr-2 flex-shrink-0">
  161. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  162. </svg>
  163. <span>Easy maintenance and updates when GitHub design changes</span>
  164. </li>
  165. <li class="flex items-start">
  166. <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-5 h-5 text-github-green mr-2 flex-shrink-0">
  167. <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
  168. </svg>
  169. <span>Better developer experience with intuitive class naming</span>
  170. </li>
  171. </ul>
  172. </div>
  173. </div>
  174. </main>
  175. </body>
  176. </html>

这个示例展示了如何使用我们的自定义Tailwind配置创建一个完整的GitHub风格导航栏。注意我们如何使用自定义的颜色、间距、圆角和阴影类来准确匹配GitHub的设计语言。

插件扩展

为了进一步增强我们的GitHub复刻能力,我们可以利用Tailwind的插件系统。在实际项目中,你可以在tailwind.config.js中添加以下插件配置:

  1. // tailwind.config.js 插件部分
  2. module.exports = {
  3. // ...其他配置
  4. plugins: [
  5. // 添加特定的GitHub组件类
  6. function({ addComponents }) {
  7. const components = {
  8. '.github-btn-primary': {
  9. backgroundColor: '#2da44e',
  10. color: '#ffffff',
  11. fontWeight: '600',
  12. padding: '5px 16px',
  13. fontSize: '14px',
  14. lineHeight: '20px',
  15. borderRadius: '6px',
  16. border: '1px solid rgba(27, 31, 36, 0.15)',
  17. boxShadow: '0 1px 0 rgba(27, 31, 36, 0.1)',
  18. '&:hover': {
  19. backgroundColor: '#2c974b',
  20. },
  21. },
  22. '.github-btn-secondary': {
  23. backgroundColor: '#f6f8fa',
  24. color: '#24292f',
  25. fontWeight: '600',
  26. padding: '5px 16px',
  27. fontSize: '14px',
  28. lineHeight: '20px',
  29. borderRadius: '6px',
  30. border: '1px solid rgba(27, 31, 36, 0.15)',
  31. boxShadow: '0 1px 0 rgba(27, 31, 36, 0.1)',
  32. '&:hover': {
  33. backgroundColor: '#f3f4f6',
  34. borderColor: 'rgba(27, 31, 36, 0.15)',
  35. },
  36. },
  37. '.github-dropdown-menu': {
  38. backgroundColor: '#ffffff',
  39. borderRadius: '6px',
  40. border: '1px solid #d0d7de',
  41. boxShadow: '0 1px 3px rgba(27, 31, 36, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12)',
  42. overflow: 'hidden',
  43. },
  44. '.github-dropdown-item': {
  45. padding: '7px 16px',
  46. fontSize: '14px',
  47. lineHeight: '20px',
  48. color: '#24292f',
  49. '&:hover': {
  50. backgroundColor: '#f6f8fa',
  51. },
  52. },
  53. '.github-avatar': {
  54. borderRadius: '50%',
  55. overflow: 'hidden',
  56. display: 'inline-flex',
  57. alignItems: 'center',
  58. justifyContent: 'center',
  59. },
  60. '.github-badge': {
  61. display: 'inline-flex',
  62. fontSize: '12px',
  63. fontWeight: '600',
  64. lineHeight: '18px',
  65. borderRadius: '10px',
  66. padding: '0 7px',
  67. },
  68. }
  69. addComponents(components)
  70. },
  71. // 添加GitHub特有的变体
  72. function({ addVariant }) {
  73. // 为GitHub下拉菜单添加打开状态
  74. addVariant('dropdown-open', '&[data-state="open"]')
  75. // 为GitHub表单添加验证状态
  76. addVariant('github-valid', '&.is-valid')
  77. addVariant('github-invalid', '&.is-invalid')
  78. // 为GitHub菜单添加选中状态
  79. addVariant('github-selected', '&.selected')
  80. }
  81. ],
  82. }

统一项目配置示例

下面是一个完整的tailwind.config.js文件,你可以将它作为GitHub复刻项目的基础:

  1. // tailwind.config.js
  2. module.exports = {
  3. content: ["./**/*.{html,js}"],
  4. theme: {
  5. extend: {
  6. colors: {
  7. // 主要色系
  8. "github-blue": "#0969da",
  9. "github-green": "#2da44e",
  10. "github-red": "#cf222e",
  11. "github-yellow": "#bf8700",
  12. "github-purple": "#8250df",
  13. // 基础色系
  14. "github-bg": "#f6f8fa",
  15. "github-border": "#d0d7de",
  16. "github-text-primary": "#24292f",
  17. "github-text-secondary": "#57606a",
  18. // 状态颜色
  19. "github-success-bg": "#dafbe1",
  20. "github-warning-bg": "#fff8c5",
  21. "github-error-bg": "#ffebe9",
  22. "github-info-bg": "#ddf4ff",
  23. // 界面颜色
  24. "github-header-bg": "#24292f",
  25. "github-header-text": "#ffffff",
  26. "github-header-search": "#24292f",
  27. "github-header-search-border": "#57606a",
  28. "github-sidebar-bg": "#ffffff",
  29. "github-hover": "#f3f4f6",
  30. "github-active": "#0969da14",
  31. "github-highlight": "#fff8c5",
  32. // 按钮颜色
  33. "github-btn-primary": "#2da44e",
  34. "github-btn-primary-hover": "#2c974b",
  35. "github-btn-secondary": "#f6f8fa",
  36. "github-btn-secondary-hover": "#f3f4f6",
  37. "github-btn-danger": "#cf222e",
  38. "github-btn-danger-hover": "#a40e26",
  39. },
  40. fontFamily: {
  41. "github": [
  42. "-apple-system",
  43. "BlinkMacSystemFont",
  44. "Segoe UI",
  45. "Noto Sans",
  46. "Helvetica",
  47. "Arial",
  48. "sans-serif",
  49. "Apple Color Emoji",
  50. "Segoe UI Emoji"
  51. ],
  52. "github-mono": [
  53. "SFMono-Regular",
  54. "Consolas",
  55. "Liberation Mono",
  56. "Menlo",
  57. "monospace"
  58. ]
  59. },
  60. fontSize: {
  61. "github-xs": ["12px", { lineHeight: "18px" }],
  62. "github-sm": ["14px", { lineHeight: "20px" }],
  63. "github-base": ["16px", { lineHeight: "24px" }],
  64. "github-lg": ["20px", { lineHeight: "30px" }],
  65. "github-xl": ["24px", { lineHeight: "36px" }],
  66. "github-2xl": ["32px", { lineHeight: "48px" }],
  67. },
  68. spacing: {
  69. "github-1": "4px",
  70. "github-2": "8px",
  71. "github-3": "16px",
  72. "github-4": "24px",
  73. "github-5": "32px",
  74. "github-6": "40px",
  75. "github-7": "48px",
  76. "github-8": "64px",
  77. "github-9": "80px",
  78. "github-10": "96px",
  79. },
  80. borderRadius: {
  81. "github-sm": "3px",
  82. "github-md": "6px",
  83. "github-lg": "12px",
  84. "github-full": "9999px",
  85. },
  86. boxShadow: {
  87. "github-sm": "0 1px 0 rgba(27, 31, 36, 0.04)",
  88. "github-md": "0 3px 6px rgba(140, 149, 159, 0.15)",
  89. "github-lg": "0 8px 24px rgba(140, 149, 159, 0.2)",
  90. "github-dropdown": "0 1px 3px rgba(27, 31, 36, 0.12), 0 8px 24px rgba(66, 74, 83, 0.12)",
  91. "github-btn": "0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25)",
  92. },
  93. borderWidth: {
  94. "github-default": "1px",
  95. },
  96. maxWidth: {
  97. "github-content": "1280px",
  98. "github-container": "1012px",
  99. },
  100. transitionProperty: {
  101. "github": "color, background-color, border-color, box-shadow",
  102. },
  103. transitionDuration: {
  104. "github": "80ms",
  105. },
  106. zIndex: {
  107. "github-header": "32",
  108. "github-dropdown": "30",
  109. "github-modal": "40",
  110. "github-toast": "100",
  111. },
  112. },
  113. },
  114. plugins: [
  115. // GitHub组件插件
  116. function({ addComponents }) {
  117. const components = {
  118. '.github-btn-primary': {
  119. backgroundColor: '#2da44e',
  120. color: '#ffffff',
  121. fontWeight: '600',
  122. padding: '5px 16px',
  123. fontSize: '14px',
  124. lineHeight: '20px',
  125. borderRadius: '6px',
  126. border: '1px solid rgba(27, 31, 36, 0.15)',
  127. boxShadow: '0 1px 0 rgba(27, 31, 36, 0.1)',
  128. '&:hover': {
  129. backgroundColor: '#2c974b',
  130. },
  131. },
  132. // 其他组件类...
  133. }
  134. addComponents(components)
  135. },
  136. // GitHub变体插件
  137. function({ addVariant }) {
  138. addVariant('dropdown-open', '&[data-state="open"]')
  139. addVariant('github-valid', '&.is-valid')
  140. addVariant('github-invalid', '&.is-invalid')
  141. addVariant('github-selected', '&.selected')
  142. }
  143. ],
  144. }

常见配置问题与解决方案

在使用Tailwind CSS复刻GitHub界面时,你可能会遇到一些常见问题。以下是一些解决方案:

  1. 问题:GitHub的图标系统难以匹配 解决方案:使用Heroicons和Octicons(GitHub的官方图标库)的组合。Heroicons可以通过CDN引入,而对于特定的GitHub图标,使用SVG代码或从GitHub网站获取。

  2. 问题:自定义字体大小不匹配行高 解决方案:使用Tailwind的字体大小扩展时,确保同时指定行高,如:"github-sm": ["14px", { lineHeight: "20px" }]

  3. 问题:响应式设计断点与GitHub不一致 解决方案:在tailwind.config.js中自定义断点,以匹配GitHub的响应式行为:

    1. screens: {
    2. 'sm': '544px', // GitHub的小屏幕断点
    3. 'md': '768px', // GitHub的中等屏幕断点
    4. 'lg': '1012px', // GitHub的大屏幕断点
    5. 'xl': '1280px', // GitHub的超大屏幕断点
    6. },
  4. 问题:GitHub的某些组件需要复杂的CSS,难以用Tailwind实现 解决方案:对于复杂组件,结合使用Tailwind的@apply指令和自定义CSS。例如:

    1. /* 在你的CSS文件中 */
    2. .github-code-block {
    3. @apply font-github-mono text-sm bg-github-bg border border-github-border rounded-github-md p-4 overflow-x-auto;
    4. }
    5. /* 添加GitHub特有的语法高亮样式 */
    6. .github-code-block .syntax-keyword {
    7. @apply text-github-purple;
    8. }
  5. 问题:网站favicon与GitHub标准不一致 解决方案:使用GitHub的favicon链接:

    1. <link rel="icon" href="https://github.githubassets.com/favicons/favicon.svg" type="image/svg+xml">

最佳实践建议

以下是在使用Tailwind CSS复刻GitHub界面时的一些最佳实践:

  1. 使用语义化类名:使用github-前缀命名类来区分GitHub特定的样式与标准Tailwind类。

  2. 组织配置文件:按类型(颜色、字体、间距等)组织你的tailwind.config.js文件,以便于维护。

  3. 遵循组件模式:将常用的UI模式抽象为组件类,通过插件系统添加到Tailwind中。

  4. 文档化自定义类:为团队成员创建自定义类的文档,解释它们的用途和对应的GitHub设计元素。

  5. 保持配置更新:随着GitHub界面的变化,定期更新你的Tailwind配置。

  6. 使用CSS变量增强灵活性

    1. // tailwind.config.js
    2. module.exports = {
    3. theme: {
    4. extend: {
    5. colors: {
    6. "github-blue": "var(--github-blue-color, #0969da)",
    7. // 其他颜色...
    8. }
    9. }
    10. }
    11. }

    然后在CSS中:

    1. :root {
    2. --github-blue-color: #0969da;
    3. /* 可以在这里为暗黑模式等准备变量 */
    4. }
    5. @media (prefers-color-scheme: dark) {
    6. :root {
    7. --github-blue-color: #58a6ff;
    8. /* 暗黑模式的其他变量... */
    9. }
    10. }

练习任务

为了巩固对自定义Tailwind配置的理解,尝试完成以下练习:

  1. 基础练习:使用本节创建的Tailwind配置,实现GitHub的标签系统(Issue标签、PR标签等),包括不同颜色和状态的标签。

  2. 中级练习:使用自定义配置创建GitHub的仓库卡片组件,确保正确使用我们定义的颜色、间距和阴影。

  3. 高级练习:实现GitHub的下拉菜单组件,包括悬停状态、活动状态和合适的过渡效果。确保使用正确的阴影和边框样式。

  4. 集成练习:将我们的自定义配置应用到第二章的”登录与注册页面”,确保使用正确的颜色、间距和组件样式。

  5. 扩展练习:为我们的配置添加暗黑模式支持,使其与GitHub的暗黑模式保持一致。这将涉及增加暗黑模式颜色变量和相应的类。

总结

在本节中,我们创建了一个完整的Tailwind CSS自定义配置,使其与GitHub的设计系统完美匹配。我们涵盖了:

  • 颜色系统的自定义,包括主色调和功能性颜色
  • 字体系统和排版的调整
  • 间距和布局系统的实现
  • 圆角和阴影效果的定义
  • 组件样式的扩展
  • 最佳实践和常见问题解决方案

通过这些自定义配置,我们为后续章节的GitHub界面复刻建立了坚实的基础。在接下来的章节中,我们将使用这些配置来实现GitHub的各种页面和组件,确保视觉上的一致性和准确性。

准备好你的工具,在下一章中,我们将开始实现GitHub的第一个完整页面:登录与注册界面!